
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
    width: 300px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.password-box button:hover i {
    color: #333;
}

.password-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Other styles */
.links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.links a {
    text-decoration: none;
    color: blue;
    font-size: 14px;
}

button {
    background-color: #333;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

button:hover {
    background-color: #555;
}

.social-login button {
    background-color: #ccc;
    color: black;
    margin: 5px 0;
    border-radius: 5px;
    padding: 10px;
}

.google-login {
    background-color: #db4437;
    color: white;
}

.facebook-login {
    background-color: #3b5998;
    color: white;
}