body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.login-page {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 250px;
    width: 100%;
}

h2 {
    margin-bottom: 10px;
    color: #333;
}

p {
    margin-bottom: 20px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-sizing: border-box;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.sign-in-btn {
    width: 100%;
    padding: 10px;
    background-color: #1b1b1b;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.social-login {
    margin-top: 20px;
}

.social-buttons {
    display: flex;
    justify-content: space-between;
}

.social-buttons button {
    flex: 1;
    margin: 0 5px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 20px;
    cursor: pointer;
}

.error {
    color: red;
    margin-bottom: 15px;
}

/* You can add more specific styles for the form elements here if needed */
