* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f766e, #134e4a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.auth-logo {
    width: 90px;
    display: block;
    margin: 0 auto 15px;
}

.auth-container h1 {
    text-align: center;
    color: #0f766e;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.auth-container input {
    width: 100%;
    padding: 13px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 45px;
}

.password-wrapper button {
    position: absolute;
    right: 8px;
    top: 7px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.auth-btn {
    width: 100%;
    padding: 13px;
    background: #0f766e;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.auth-btn:hover {
    background: #115e59;
}

.auth-link {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}

.auth-link a {
    color: #0f766e;
    font-weight: bold;
    text-decoration: none;
}

/* ===================================
   BUILDFRAME FOOTER
=================================== */

.buildframe-footer {

    background:
        linear-gradient(135deg,
            #071a2f,
            #0f2f52);

    color: white;

    text-align: center;

    padding: 30px 20px;

    margin-top: 60px;

    border-top:
        1px solid rgba(116, 227, 255, .20);

}

.buildframe-credit {

    max-width: 1000px;

    margin: auto;

}

.buildframe-credit strong {

    display: block;

    font-size: 20px;

    margin-bottom: 10px;

}

.buildframe-credit span {

    display: block;

    color: #b8d7f0;

    margin-bottom: 20px;

}

.buildframe-links {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.buildframe-links a {

    color: #74e3ff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.buildframe-links a:hover {

    color: white;

}