.custom-form-container {
    width: 100%;
    max-width: 350px;
    margin: 40px auto;
    padding: 35px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-heading {
    text-align: center;
    margin-bottom: 25px;
    color: #505050;
    font-size: 26px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.custom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.custom-label {
    display: block;
    margin-bottom: 5px;
    color: #505050;
    font-size: 16px;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.custom-input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    background-color: #fff;
}

.custom-input:focus {
    border: 2px solid #ccc;
    border-color: #a1aab3;
    outline: #a1aab3;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #505050;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #707070;
}

.form-footer a {
    text-decoration: none;
    color: #007BFF;
    font-weight: normal;
}

.form-footer a:hover {
    text-decoration: underline;
    color: #0069d9;
}

.facebook-login-btn, .google-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.facebook-login-btn {
    background-color: #4267B2;
    color: white;
}

.facebook-login-btn:hover, .facebook-login-btn:focus {
    background-color: #365899;
    text-decoration: none;
    color: white;
}

.facebook-login-btn i {
    margin-right: 8px;
    font-size: 20px;
}

.google-login-btn {
    background-color: white;
    color: #757575;
    padding: 12px 24px;
    border-radius: 2px;
    font-family: 'Roboto', Arial, sans-serif;
    border: 1px solid #f5f5f5;
}

.google-login-btn:hover, .google-login-btn:focus {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #757575;
}

.google-login-btn i {
    margin-right: 10px;
    color: #db4437;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
