body {
    background-image: url("/images/background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    max-width: 1200px;
    width: 100%;
    height: 800px;
}

.left {
    background-color: #1e3a8a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    width: 50%;
}

.left img {
    max-width: 100%;
    height: auto;
}

.right {
    margin-top: 180px;
    padding: 32px;
    width: 50%;
}

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

.form-group label {
    display: block;
    font-size: 25px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 4px;
}

.form-group input {
    width: 85%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #4b5563;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.form-group .icon {
    position: absolute;
    padding-left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.form-group .input-wrapper {
    position: relative;
}

.form-group .input-wrapper input {
    padding-left: 32px;
    height: 50px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    padding-right: 32px;
}

.form-group .eye-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
}

.form-group .eye-icon:hover {
    color: #6b7280;
}

.forgot-password a {
    margin-bottom: 5px;
    font-size: 20px;
    color: #6b7280;
    text-decoration: none;
}

.forgot-password a:hover {
    color: #374151;
}

.login-button {
    width: 100%;
    margin-top: 20px;
    background-color: #2563eb;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 25px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.signup {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.signup a {
    color: #2563eb;
    text-decoration: none;
}

.signup a:hover {
    color: #1d4ed8;
}
