﻿/* 1. Container */
.acghrs-login, .acghrs-regs, .acghrs-reset {
    margin-top: 60px;
    margin-bottom: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 2. Main Content Panel */
.main-content-login,
.main-content-reset {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* 3. Panels */
.left-panel, .right-panel, .reset-panel {
    background-color: #1f274c; /* Dark panel background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

/* 4. Divider */
.divider {
    width: 1px;
    background-color: #5090F0; /* Accent divider */
}

/* 5. Titles */
.login-pattern-title,
.reset-pattern-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    color: #5090F0; /* Bright blue accent */
    margin-bottom: 20px;
}

/* 6. Alert Box */
.alert-box {
    background-color: #2f3760; /* Darker than panels */
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #5090F0;
    margin-bottom: 15px;
    text-align: center;
}






/* ==========================
   Social Login Buttons
   ========================== */
.google-btn, .microsoft-btn, .apple-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border: 3px solid #000;
    border-radius: 4px;
    padding: 0 16px;
    height: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px; /* o 25px kung gusto mo same as Login */
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

    .google-btn:hover, .microsoft-btn:hover, .apple-btn:hover {
        background-color: #f7f7f7;
        transform: scale(1.02);
    }

.google-icon-wrapper, .microsoft-icon-wrapper, .apple-icon-wrapper {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.google-icon, .microsoft-icon, .apple-icon {
    width: 25px;
    height: 25px;
}

.google-text, .microsoft-text, .apple-text {
    display: inline-block;
}

.google-btn.mb-1, .microsoft-btn.mb-1, .apple-btn.mb-1 {
    margin-bottom: 5px !important;
}
