* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-section h1 {
    margin-bottom: 20px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.password-note {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

.login-btn {
    padding: 12px;
    background-color: #2f3d8f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.login-btn:hover {
    background-color: #1e2a6e;
}

hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.signup {
    text-align: center;
    color: #555;
}

.signup a {
    color: #2f3d8f;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}
