﻿/*로그인*/
.MyLoginBox {
    width: 100%;
    height: 100vh;
}

.MyLoginBoxL {
    animation: color 6s infinite linear;
    width: 50%;
    height: 100%;
    flex-direction: column;
}

.BigWord {
    font-size: 11rem;
    font-weight: 800;
    color: #ffffff40;
}

@keyframes color {
    0%, 100% {
        background: #594ae2; /*33CCCC*/
    }

    10% {
        background: #19afd0;
    }

    20% {
        background: #1ab2a3;
    }

    30% {
        background: #96ce56;
    }

    40% {
        background: #cddc39;
    }

    50% {
        background: #ffc107;
    }

    60% {
        background: #ff9800;
    }

    70% {
        background: #ff5722;
    }

    80% {
        background: #e91e63;
    }

    90% {
        background: #de6df2;
    }
}

.MyLoginBoxL img.MyLogo {
    width: 85%;
    max-width: 600px;
    margin-top: 3rem;
    margin-bottom: 4rem;
}
.MyLoginBoxL img.Lady {
    width: 90%;
    max-width: 550px;
}

.MyLoginBoxR {
    background-color: #ffffff;
    width: 50%;
}

.MyTodayBox {
    width: 100%;
    flex-direction: column;
    margin-bottom: 3rem;
}

.MyYearInnerBox h4 {
    font-weight: 800 !important;
    opacity: .4;
    line-height: 1 !important;
    padding-left: 16px;
}

.MyYearInnerBox .MyLogo {
    width: 130px;
    padding-right: 16px;
}

.MyDayInnerBox {
    display: flex;
    align-items: end;
}

    .MyDayInnerBox h1 {
        font-weight: 800 !important;
        color: var(--mud-palette-primary) !important;
        line-height: 1 !important;
    }

        .MyDayInnerBox h1:last-of-type {
            font-size: 5.25rem;
            line-height: 1 !important;
            padding-bottom: 6px
        }

    .MyDayInnerBox h5 {
        position: relative;
        bottom: 10px;
        line-height: 1 !important;
        opacity: .6;
    }

.MyLoginBoxR .mud-grid {
    max-width: 300px;
    margin: 0 auto;
}

.MyLoginInput {
    position: relative !important;
    height: 52px;
    box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    padding: 3px 16px;
    padding-inline-start: 50px;
    font-size: 1.2em !important;
    border-radius: var(--mud-default-borderradius);
    border-color: #594ae2b3 !important;
    border-width: 1px;
    border-style: solid;
    transition: border-width,border-color 200ms cubic-bezier(.4,0,.2,1) 0ms;
    margin-bottom: 5px;
}

    .MyLoginInput:focus {
        border-width: 2px;
        border-color: var(--mud-palette-primary) !important;
        color: var(--mud-palette-primary) !important;
        font-weight: 800;
        outline: none;
    }

    .MyLoginInput.invalid {
        border-color: #e50000 !important;
    }

.MyLoginButton {
    height: 60px !important;
    font-size: 1.25rem;
    border: var(--borderb-op01);
}
    .MyLoginButton:hover {
        filter: brightness(1.2);
    }
.ROK{
    align-self:end;
}
.ROK .MyLogo {
    width: 120px;
    margin: 4rem auto 0px;
}
@media (max-width: 600px) {
    .BigWord {
        font-size: 3.5rem;
    }
    .MyLoginBoxL img.MyLogo {
        width: 35%;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }

    .MyLoginBoxL img.Lady {
        width:40%;
    }

    .MyLoginBox {
        flex-direction: column;
        justify-content: space-between;
    }

    .MyLoginBoxL {
        width: 100%;
        height: 35vh;
    }

    .MyLoginBoxR {
        width: 100%;
        height: 65vh;
        margin: 0 auto;
        border-radius: 0px;
        padding: 30px !important;
    }

    .MyTodayBox {
        transform: scale(0.8);
        margin-bottom: 0.5rem;
    }
    .ROK {
        transform: scale(0.9);
    }
    .ROK .MyLogo {
        margin: 1rem auto 0px;
    }
}