﻿.mud-login-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #1976d2, #42a5f5);
    padding: 2rem;
}

.mud-login-container {
    width: 100%;
    max-width: 960px;
    border-radius: 12px;
    overflow: hidden;
}

.mud-login-welcome {
    height: 100%;
    color: white;
    background-color: #1565c0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.mud-login-card {
    padding: 2rem 1.5rem;
}

.mud-login-container-grid {
    height: 100%;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1e1e1e inset !important;
    -webkit-text-fill-color: white !important;
    caret-color: white;
    transition: background-color 9999s ease-out 0s;
}

@media (max-width: 768px) {

    .mud-login-welcome,
    .mud-login-card {
        width: 100%;
        margin-top: 0;
        padding: 0;
    }

    .mud-login-welcome {
        display: none;
    }

    .mud-login-card {
        padding: 32px 20px;
    }
    .mud-card-content{
        padding: 0;
    }
}
