* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    position: relative;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    inset: 0;
    z-index: -2;
}

.overlay {
    position: absolute;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 92, 92, .82), rgba(10, 46, 56, .9), rgba(5, 20, 35, .95));
}

.login-container {
    position: relative;
    z-index: 10;
    width: 500px;
    text-align: center;
    padding: 40px;
}

.logo-box {
    display: block;
    background: white;
    padding: 4px;
    width: fit-content;
    border-radius: 20px;
    margin: 0 auto 20px;
}

.logo-box img {
    height: 65px;
}

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid #4c897d;
    background: rgba(15, 92, 92, .55);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #7FEDD8;
    margin-bottom: 25px;
    font-size: 13px;
}

h1 {
    font-size: 50px;
    color: white;
    font-family: "Playfair Display";
    margin-bottom: 10px;
}

.subtitle {
    color: #bbbbbb;
    margin-bottom: 35px;
}

.input-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 18px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.input-box i {
    color: #888;
    font-size: 18px;
    transition: color 0.3s ease;
}

.input-box input {
    border: none;
    outline: none;
    flex: 1;
    margin-left: 15px;
    font-size: 16px;
}

.input-box:focus-within {
    border: 2px solid rgb(15, 92, 92);
}

.input-box:focus-within i {
    color: rgb(15, 92, 92);
}

.eye {
    cursor: pointer;
}

.remember {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    color: white;
    font-size: 14px;
}

.remember a {
    color: #7de3d6;
    text-decoration: none;
}

.remember a:hover {
    color: #aeefe7;
}

button {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(127, 237, 216, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s ease;
    box-shadow: rgba(15, 92, 92, 0.5) 0px 4px 24px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    letter-spacing: 0.06em;
    transform: translateY(0px);
}

button:hover {
    background: linear-gradient(135deg, rgb(20, 112, 112) 0%, rgb(13, 56, 68) 60%, rgb(8, 32, 42) 100%);
    border: 1px solid rgba(127, 237, 216, 0.3);
    box-shadow: rgba(15, 92, 92, 0.7) 0px 6px 32px, rgba(255, 255, 255, 0.1) 0px 1px 0px inset;
    letter-spacing: 0.06em;
    transform: translateY(-1px);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(15, 92, 92, 0.3);
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #bbbbbb;
}

.remember-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.remember-label span {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(200, 235, 230, 0.45);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.remember-label input:checked + span {
    border-color: #7fedda;
}

.remember-label input:checked + span::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #7fedda;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: rgb(199 199 199 / 55%);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    padding: 0 15px;
    color: rgb(199 199 199 / 55%);
}

.signup-text {
    text-align: center;
    font-size: 14px;
    color: #bbbbbb;
    margin-bottom: 20px;
}

.signup-text a {
    color: #7de3d6;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.signup-text a:hover {
    color: #aeefe7;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: rgb(199 199 199 / 55%);
    line-height: 1.6;
}
