* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    background: #f8f9fa;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Left side - Design section */
.left-section {
    flex: 1;
    background-image: url('../images/login-back-tinted.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 45rem;
    height: 67.5rem;
}

.logo {
    width: 48px;
    height: 48px;
    background: #FF9500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    margin-top: 11rem;
    margin-bottom: 20px;
}

.left-content {
    margin-right: 10.38rem;
    margin-left: 4.5rem;
    margin-bottom: 38rem;
}

.left-content h1 {
    color: #FFF;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 4rem;
}

.left-content p {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 30.125rem;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 0.75rem;
}

/* Right side - Login form */
.right-section {
    flex: 1;
    background: white;
    padding: 4.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 75rem;
    height: 67.5rem;
    flex-shrink: 0;
}

.login-form {
    max-width: 400px;
    width: 100%;
}

.form-title {
    font-family: Arial;
    font-size: 2.8125rem;
    font-weight: 700;
    margin-top: 8rem;
    margin-bottom: 1.06rem;
    color: #000;
}

.form-group {
    width: 35.5rem;
    margin-bottom: 0.5rem;
    gap: 1.125rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.69rem;
    color: #666;
    font-size: 1rem;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #666;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #FF9500;
    background: white;
}

.label-toggle-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.69rem;
}

.label-toggle-wrapper label {
    margin-bottom: 0;
    /* remove spacing under label */
}

.password-toggle {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.password-toggle:hover {
    color: #333;
}

.eye-icon {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.25069rem 0.18119rem 0.24956rem 0.18213rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.forgot-password {
    text-align: right;
    margin-top: 0.5rem;
}

.forgot-password a {
    color: #111111;
    font-size: 14px;
}

.forgot-password a:hover {
    color: #111111;
}

.sign-in-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.sign-in-btn {
    display: flex;
    width: 19rem;
    height: 4rem;
    background: #aeb0b3;
    color: #ffffff;
    border: none;
    padding: 1.21875rem 0rem 1.28125rem 0rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1.125rem;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border-radius: 2rem;
    background: #cccccc;
    cursor: pointer;
}

.signup-link-bottom {
    text-align: center;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    padding: 0.125rem;
    align-items: flex-start;
}

.signup-link-bottom a {
    color: #111;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        min-height: 400px;
        padding: 40px 30px;
    }

    .left-content h1 {
        font-size: 32px;
    }

    .right-section {
        padding: 40px 30px;
    }

    .signup-link-top {
        top: 20px;
        right: 30px;
    }
}