:root {
    --color-primary: #004aad;
    --color-primary2: #D49CEF;
}
.login-body {
    min-height: 100vh;
    background: linear-gradient(65deg, #EA4335 0%, var(--color-primary) 100%);
    padding-top: 60px;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 20px 20px 20px;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    color: var(--color-primary);
}



.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}



.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary2) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size:16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.login-button:hover::before {
    left: 100%;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    color: #666;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e1e1;
}

.divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 20px;
    position: relative;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    color: #333;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.signup-link {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.signup-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}



.goto-hp {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}
.footer {
    background: #fff;
    text-align: center;
    padding-top: 25px;
}
.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.footer-nav li {
    padding: 3px 15px;
}
.footer-nav li a {
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    color: #787878;
}
.footer-nav li a:hover {
    color: var(--color-primary);
}
.cp-right {
    padding-top: 30px;
    padding-bottom: 18px;
    font-size: 12px;
    color: #878787;
    border-top: 1px solid #ccc;
    margin-top: 20px;
}

.register-controller {
    max-width: 700px;
    padding-bottom: 30px;
}

@media (max-width: 480px) {
    .main-body {
        padding-top: 50px;
    }
    .login-container {
        padding: 20px 15px;
    }
    
    .login-header h1 {
        font-size: 2rem;
    }
    
    .footer {
        padding-top: 25px;
        min-height: 300px;
    }
    .footer-nav li{
        width: 100%;
        text-align: left;

    }
    .cp-right {
        margin-top: 15px;
        padding-top: 20px;
    }
}


.req {
    background: red;
    padding: 0px 5px;
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    margin-bottom: 2px;
    display: inline-block;
}
.error {
    margin-top: 2px;
    color: red;
    font-size: 12px;
}

.step-wizard-list{
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 10px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item{
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive:1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}
.step-wizard-item + .step-wizard-item:after{
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: var(--color-primary);
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}
.progress-count{
    height: 40px;
    width:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index:10;
    color: transparent;
}
.progress-count:after{
    content: "";
    height: 40px;
    width: 40px;
    background: var(--color-primary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -10;
}
.progress-count:before{
    content: "";
    height: 10px;
    width: 20px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    transform-origin: center center;
}
.progress-label{
    font-size: 14px;
    margin-top: 10px;
}
.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before{
    display: none;
}
.current-item ~ .step-wizard-item .progress-count:after{
    height:10px;
    width:10px;
}
.current-item ~ .step-wizard-item .progress-label{
    opacity: 0.5;
}
.current-item .progress-count:after{
    background: #fff;
    border: 2px solid var(--color-primary);
}
.current-item .progress-count{
    color: var(--color-primary);
}