body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-card {
    width: 350px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.login-logo {
    width: 50px;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.forgot-password {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: #e60023;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.divider {
    margin: 15px 0;
    font-size: 14px;
    color: #999;
}

.social-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
}

.facebook {
    background-color: #4267B2;
    color: white;
}

.google {
    background-color: #db4437;
    color: white;
}

.terms {
    margin: 20px 0;
    font-size: 12px;
    color: #777;
}

.terms a {
    color: #007bff;
    text-decoration: none;
}

.signup {
    font-size: 14px;
    color: #777;
}

.signup a {
    color: #007bff;
    text-decoration: none;
}
