* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url("https://i.pinimg.com/1200x/a7/8c/0e/a78c0e946afc6ed036892dbc279da92b.jpg") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    padding: 20px;
}

.form-container {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass {
    width: 100%;
    max-width: 430px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.glass h2 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.glass p {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.7;
    font-size: 14px;
}

.input-box {
    position: relative;
    margin-bottom: 25px;
}

.input-box input {
    width: 100%;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0 45px 0 15px;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.input-box label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .3s;
    color: rgba(255, 255, 255, 0.6);
}

.input-box input:focus + label,
.input-box input:valid + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #d46b38;
    background: #1a1512;
    padding: 0 5px;
    border-radius: 4px;
}

.input-box input:focus {
    border-color: #d46b38;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #d46b38;
    opacity: 0.8;
    pointer-events: none;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 13px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.options label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.options a {
    white-space: nowrap;
}

.btn {
    width: 100%;
    height: 55px;
    background: #d46b38;
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(212, 107, 56, 0.2);
}

.btn:hover {
    background: #f07e46;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(212, 107, 56, 0.4);
}

.bottom-text {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

a {
    color: #d46b38;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

a:hover {
    color: white;
}

input[type="checkbox"] {
    accent-color: #d46b38;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .glass {
        padding: 30px 20px;
    }

    .glass h2 {
        font-size: 24px;
    }

    .options {
        font-size: 12px;
    }

    .input-box input {
        height: 50px;
    }

    .btn {
        height: 50px;
    }
}

@media (max-height: 600px) {
    body {
        height: auto;
        padding: 40px 20px;
    }
}