/* style.css */
body {
    background-color: #fafafa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.login-container {
    max-width: 350px;
    margin: 60px auto 10px;
    padding: 20px 40px;
    border: 1px solid #dbdbdb;
    background: white;
    text-align: center;
}

h1, h2 {
    margin: 22px auto 12px;
    width: 175px;
}

.form-control {
    background: #fafafa;
    border: 1px solid #dbdbdb;
    font-size: 14px;
    padding: 9px 8px 7px;
    height: 36px;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #a8a8a8;
    background: #fafafa;
}

.btn-primary {
    background-color: #0095f6;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    padding: 5px 9px;
    width: 100%;
    height: 32px;
    font-size: 14px;
    margin-top: 8px;
}

.btn-primary:hover {
    background-color: #1877f2;
}

.divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #8e8e8e;
    font-size: 13px;
    font-weight: 600;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dbdbdb;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

.facebook-login {
    color: #385185;
    font-weight: 600;
    font-size: 14px;
    margin: 15px 0;
    display: inline-block;
}

.facebook-login i {
    font-size: 16px;
    margin-right: 8px;
}

.forgot-password {
    color: #00376b;
    font-size: 12px;
    margin-top: 12px;
    display: inline-block;
}

.signup-container {
    max-width: 350px;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #dbdbdb;
    background: white;
    text-align: center;
    font-size: 14px;
}

.signup-link {
    color: #0095f6;
    font-weight: 600;
    text-decoration: none;
}

.error-message {
    color: #ed4956;
    font-size: 14px;
    margin: 10px 0;
}