﻿body {
    background-color: #f7f7f7;
    font-family: Arial, sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-card {
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 1500px;
}

.divider {
    border-left: 1px solid #ddd;
}

.bg-white {
    background-color: white;
}

.btn-custom {
    background-color: #222;
    color: #fff;
    border-radius: 20px;
    width: 100%;
}

    .btn-custom:hover {
        background-color: #000;
        color: white;
    }

.card-section {
    padding: 20px;
}

.logos img {
    height: 30px;
    margin-right: 10px;
}

.iziToast {
    z-index: 99999 !important;
}

@media(max-width: 992px) {
    .divider {
        display: none;
    }
}
/* === Modern Glass Toast === */
.iziToast.glass-toast {
    background: linear-gradient(135deg, rgba(255,255,255,1.1), rgba(255,255,255,1.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 13px 28px;
    box-shadow: 0 8px 38px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 173, 255, 0.15);
    color: black !important;
    /* max-width: 400px; */
    margin-top: 90px;
    animation-duration: 0.6s;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    /* border: 3px solid transparent; */
    background-clip: padding-box;
    transition: all 0.5s ease-in-out;
}

.iziToast > .iziToast-body > p{
    color:black !important;
}