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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Left Section */
.left-section {
    width: 50%;
    background-color: #F5F3EF;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.content-wrapper {
    max-width: 450px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1C1816;

    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 16px;
    color: #9A8F82;

    line-height: 1.5;
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 35px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1C1816;

    margin-bottom: 10px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #E8E3DD;
    font-size: 14px;
    background: transparent;
    color: #1C1816;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-bottom-color: #C9B8A8;
}


input[type="password"]::placeholder {
    color: #ccc;
    letter-spacing: 4px;
}

input[type="email"]::placeholder {
    color: #ccc;
}



.reset-btn {
    width: 100%;
    padding: 16px;
    background-color: #1C1816;

    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.reset-btn:hover {
    background-color: #C9B8A8;
color: #2A2520;

}

.checkmark {
    font-size: 20px;
    margin-left: 10px;
}

/* Right Section */
.right-section {
    width: 50%;
    background-color: #2A2520;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.right-section h2 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 40px;
}

.account-text {
    color: #C9B8A8;
    font-size: 72px;
    font-weight: 700;
}

.red-line {
    width: 100px;
    height: 4px;
     background-color: #C9B8A8;
    margin: 30px auto 40px;
}

.tagline {
    font-size: 14px;
    color: #9A8F82;

    letter-spacing: 0.5px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    body {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 100%;
        padding: 40px 30px;
    }

    h1 {
        font-size: 36px;
    }

    .right-section h2 {
        font-size: 48px;
    }

    .account-text {
        font-size: 48px;
    }
}

@media (max-width: 768px) {

    .left-section,
    .right-section {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .description {
        font-size: 14px;
    }

    .right-section h2 {
        font-size: 36px;
    }

    .account-text {
        font-size: 36px;
    }

    .tagline {
        font-size: 12px;
    }
}

.message {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
}

.message.error {
   
    color: #b91c1c;
}

.message.success {
    color: #166534;
}
