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

body {
    background: #fff;
}

.nav-bar {
    width: 100%;
    height: 72px;
    border-bottom: 1px solid #d4d4d4;
    padding: 12px 32px;
}

.logo {
    width: 174px;
    height: 48px;
}

.auth-container {
    width: 400px;
    margin: 0 auto;
    padding: 20px 32px;
    border-radius: 32px;
    text-align: center;
    margin-top: 26px;
}

.welcome-section {
    margin-bottom: 32px;
}

.welcome-section h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 16px;
}

.welcome-section p {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #000;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-field {
    padding-top: 14px;
}

.input-wrapper {
    position: relative;
    height: 56px;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    background: #fff;
    padding: 4px 8px;
}

input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    padding: 14px;
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox {
    width: 24px;
    height: 24px;
    border-color: gray;
    background-color: gray;
    transition: background 0.3sease;
}

.checkbox-wrapper span {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: gray;
}

.forgot-password {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #493d9e;
    text-decoration: none;
    padding: 0 12px;
}

.submit-btn {
    width: 360px;
    padding: 14px 28px;
    background: #493d9e;
    border: none;
    border-radius: 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #3c3180;
}

.checkbox:checked {
    background-color: #493d9e;
    border-color: #493d9e;
}

.illustration {
    height: 297.4px;
    margin: 20px auto;
}

.illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}