
/*------------login---------------*/
* {
    box-sizing: border-box;
    font-family: 'Vazir-FD';
}

body {
    margin: 0;
    /*background: #bfc3cc;*/
    background: #e0e4ee;;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Vazir-FD;
    /*direction: rtl;*/
}


.mycontainer {
    width: 900px;
}

.mycard {
    display: flex;
    background: #f8f8f8;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Left */
.myform-section {
    width: 50%;
    padding: 40px;
    background: #f7f7f7;
}

.myform-section img {

    width: 150px;
    /*border-radius: 50%;*/
    display: block;
    margin-left: auto;
    margin-right: auto
}

.myform-section input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background: #fff;
    text-align: left;
}

.main-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #f4c430;
    font-weight: bold;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #999;
    font-size: 13px;
}

.divider a{
    text-decoration: none;
    color: #000;
}

.other-btn {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.other-btn a {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #000;
}

/* Right */
.image-section {
    width: 50%;
    background: url('../img/login-img11.jpg') center/cover;
    position: relative;
}


.msg{
    color: #fff;
    font-weight: bold;
    background-color: green;
    padding: 5px;
}




@media(max-width: 768px){
    .mycard{flex-direction: column;}
    .myform-section {
        width:100%;
    }
    .image-section{
        width:100%;
    }
}