﻿:root {
    --md-ref-typeface-brand: "Google Sans", "Roboto", Arial, Helvetica, sans-serif;
    --md-ref-typeface-plain: "Google Sans", "Roboto", Arial, Helvetica, sans-serif;
    --md-sys-color-primary: #333;
    --md-sys-color-primary-container: #1a73e8;
    --md-sys-color-on-primary: #FFFFFF;
    --md-sys-typescale-label-medium-font: 16px;
    --md-sys-typescale-label-medium-size: 14px;
    --md-sys-typescale-label-medium-line-height: 1.5;
    --md-sys-typescale-label-medium-weight: 400;
    --md-fab-primary-label-text-color: #FFFFFF;
    --md-sys-color-on-primary-container: #FFFFFF;
    --md-sys-color-surface-container: #FFFFFF;
    --md-dialog-container-color: #FFFFFF;
    --md-dialog-headline-font: "Google Sans", "Roboto", Arial, Helvetica, sans-serif;
    --md-sys-typescale-headline-small-font: "Google Sans", "Roboto", Arial, Helvetica, sans-serif;
    --md-icon-button-icon-color: #5f6368;
    --md-sys-color-on-surface-variant: #5f6368;
    --md-list-container-color: #ffffff;
    --mdui-color-error: 63, 81, 181;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body,
html {
    height: 100%;
    width: 100%;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.left-panel {
    flex: 0 0 25%;
    min-width: 280px;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    text-align: center;
}

.right-panel {
    flex: 1;
    background-image: url('https://sjb.edusoftnet.pe/edusoftnetlive/loginapp/media/admision.jpg');
    background-size: cover;
    background-position: center;
}

.left-panel h2 {
    margin-bottom: 30px;
    color: #333;
}



.logoImage {
    max-width: 100%;
    max-height: 8em;
}

img {
    vertical-align: middle;
    border: 0;
}

.field {
    width: 100%;
}


.elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.row {
    display: flex;
    margin-top: .5rem;
    align-items: center;
}

.col-5 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-2 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin-top: .3rem;
}


.title {
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: transparent;
    background: linear-gradient(90deg, #000 0%, #F7CCFD 25%, #E1F995 50%, #F7CCFD 75%, #000 100%);
    background-blend-mode: lighten;
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: rainbow 10s linear infinite;
    font-size: 3rem;
}


@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 200% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 1700px) {
    .left-panel {
        padding: 20px 20px;
    }
}

@media (max-width: 1200px) {
    .left-panel {
        flex: 0 0 35%;
        padding: 20px 20px;
    }
}

@media (max-width: 900px) {
    .left-panel {
        flex: 0 0 40%;
        padding: 40px 60px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .right-panel {
        display: none;
    }

    .left-panel {
        width: 100%;
        padding: 40px 20px;
        box-shadow: none;
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}