﻿/*Login Page Popup*/
.Slogin-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
}

.Slogin-modal-content {
    width: 320px;
    height: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

    .Slogin-modal-content iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.Sclose-login {
    position: absolute;
    right: 12px;
    top: 5px;
    font-size: 28px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    z-index: 10;
}
.Sclose-login:hover {
        color: red;
    }
/*End Login Page Popup*/

/*Register Page Popup*/
.Sregister-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
}


.Sregister-modal-content {
    width: 650px;
    height: 800px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
}

    .Sregister-modal-content iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.Sclose-register {
    position: absolute;
    right: 12px;
    top: 5px;
    z-index: 10000;
    font-size: 30px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}


    .Sclose-register:hover {
        color: red;
    }
/*End Register Page Popup*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}



.Scontainer {
    width: 100%;
    /*min-height: 100%;*/
    min-height: 1000px;
    display: flex;
}

.Sleft-panel {
    width: 45%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background: rgba(255,255,255,0.08);
}

    .Sleft-panel h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .Sleft-panel h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .Sleft-panel p {
        font-size: 18px;
        line-height: 30px;
        text-align: center;
    }

.Sright-panel {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Sregister-card {
    width: 700px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}
    .Sregister-card h2 {
        text-align: center;
        color: #1e3c72;
        margin-bottom: 25px;
        padding-top:25px;
    }
.Sform-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.Sform-group {
    flex: 1;
}

    .Sform-group .Sinput-group {
        margin-bottom: 0;
    }
.Sinput-group {
    position: relative;
    margin-bottom: 18px;
}

    .Sinput-group i {
        position: absolute;
        left: 15px;
        top: 15px;
        color: #777;
        font-size: 16px;
    }

.Stextbox {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

    .Stextbox:focus {
        border-color: #1e88e5;
        box-shadow: 0 0 8px rgba(30,136,229,.25);
    }

.lblNormal {
    align-content:center;
    font-family: Verdana;
    font-size: 10pt;
}

.SbtnRegister {
    width: 100%;
    background: #1e88e5;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    margin-top: 10px;
}

    .SbtnRegister:hover {
        background: #1565c0;
        transform: translateY(-2px);
    }

.Slogin-link {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

    .Slogin-link a {
        color: #1e88e5;
        font-weight: bold;
        text-decoration: none;
    }

        .Slogin-link a:hover {
            text-decoration: underline;
        }

@media(max-width:900px) {

    .Scontainer {
        flex-direction: column;
    }

    .Sleft-panel {
        width: 100%;
        height: 220px;
        padding: 30px;
    }

        .Sleft-panel h1 {
            font-size: 30px;
        }

        .Sleft-panel h2 {
            font-size: 22px;
        }

        .Sleft-panel p {
            font-size: 15px;
            line-height: 24px;
        }

    .Sright-panel {
        width: 100%;
        padding: 25px;
    }

    .Sregister-card {
        width: 100%;
        max-width: 500px;
    }
}
