.social-login {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}
.social-btn {
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 15px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 140px;
    height: 44px;
}
.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.social-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.social-btn i {
    font-size: 18px;
}
.social-btn.google {
    background-color: #ffffff !important;
    color: #3c4043 !important;
    border: 1px solid #dadce0 !important;
}
.social-btn.google:hover {
    background-color: #f8f9fa !important;
    border-color: #d2d3d4 !important;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3) !important;
}
.social-btn.google i {
    color: #4285f4;
}
.social-btn.google span {
    color: #3c4043;
}
.social-btn.facebook {
    background-color: #0d6efd;
}
.social-btn.facebook:hover {
    background-color: #0d6efd !important;
}
.social-btn.apple {
    background-color: #000000;
}
.social-btn.apple:hover {
    background-color: #2c2c2c;
}
.flag-button {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    line-height: 1;
}
.flag-button:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.flag-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.flag-emoji {
    font-size: 1.2em;
}
.form-control {
    height: 44px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #495057 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 0.75rem !important;
    line-height: 44px !important;
}
.form-control::placeholder {
    font-weight: 300 !important;
    color: #adb5bd !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #495057 !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
label {
    display: block !important;
    font-weight: 500 !important;
}
.auth-primary-submit {
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 15px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    height: 44px !important;
    padding: 11px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
.auth-primary-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: white !important;
}
.auth-primary-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
