
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('../img/bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    max-width: 400px;
    width: 100%;
    background: #fefefe;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-card img.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.btn-microsoft,
.btn-outline-custom {
    height: 50px;
    font-weight: 300;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

.btn-microsoft {
    background-color: white;
    color: black;
    border: 1.3px solid #efefef;
}

.btn-microsoft:hover {
    background-color: #efefef;
    color: black;
}

.btn-outline-custom {
    border: 1.3px solid #efefef;
    color: #000;
}

.btn-outline-custom:hover {
    background-color: rgba(108, 117, 125, 0.1);
    color: #495057;
}

.btn-outline-fp:hover {
    background-color: rgba(108, 117, 125, 0.1);
    color: #495057;
}

.btn-outline-fp {
    color: #egegeg;
    background: transparent;
    border: none;
    text-align: right;
    font-weight: 300;
    border-radius: 0px;
    font-size: 12px;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 5px;
}

.btn-content img {
    width: 24px;
    height: 24px;
    font-size: light;
}

.left-icon,
.right-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-content span {
    flex: 1;
    text-align: left;
    padding: 0 10px;
    font-size: 0.80rem;
    font-weight: 500;
}

.desc-text {
    font-size: 12px;
}

.info-box {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
    margin: 5px;
    font-weight: 300;
    font-size: 0.95rem;
}

.info-box p {
    margin: 0;
}

.language-switcher {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lang-btn {
    background-color: rgba(0,0,0,0.05);
    color: #333;
    border: none;
    padding: 6px 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
}

.lang-btn:hover {
    background-color: rgba(0,0,0,0.1);
}

.lang-btn.active {
    background-color: #0078d4;
    color: white;
}

.hr-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
    border-radius: 1px;
}

.login-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding: 0 5px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-right {
    display: flex;
    gap: 8px;
}

.btn-outline-fp:hover,
.lang-btn:hover {
    text-decoration: none;
}

a {
    text-decoration: none;
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .login-card {
        padding: 20px;
    }
}
