/* Phila Auth Modal Styles */
.phila-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
}

.phila-modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 90%; 
    max-width: 400px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.phila-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.phila-close:hover,
.phila-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.phila-auth-form h2 {
    margin-top: 0;
    text-align: center;
    color: #333;
}

.phila-form-group {
    margin-bottom: 15px;
}

.phila-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.phila-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.phila-submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.phila-submit-btn:hover {
    background-color: #005177;
}

.phila-switch-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.phila-switch-link a {
    color: #0073aa;
    text-decoration: none;
    cursor: pointer;
}

.phila-error-message, .phila-success-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.phila-error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.phila-success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Google Button */
.phila-google-btn {
    width: 100%;
    padding: 10px;
    background-color: #db4437;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
    text-align: center;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phila-google-btn:hover {
    background-color: #c53929;
}
