/* .container {
    display: flex;
    height: 100%;
} */

.contact-main{
    margin-top: 100px;
  
    display: flex;
    height: 100%;
}
.sidebar1 {
    width: 50%;
    height: 900px;
    background-image:url(../rrn-image/siginin.jpeg);
    background-size: cover;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar2 {
    width: 50%;
    height: 900px;
    background-image: url(../rrn-image/register.jpg);
    background-size: cover;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main {
    width: 50%;
    background-color: #f8f8f8;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form {
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    padding: 50px;
}
   
.sidebar1 h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
    text-transform: uppercase;
}
.login-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem!important;
    text-align: center;
    text-transform: uppercase;
    
}

.login-form h2 span{
    color:#e1b213;
}
.sidebar1 p {
    color: #666;
    margin-bottom: 1.5rem;
    color:white;
}
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.btn-social {
    background-color: white;
    border: 1px solid #ccc;
}
.btn-login {
    background-color:#e0ac0e;
    color: black;
    font-weight: bold;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
a {
    color: #0066cc;
    text-decoration: none;
}
.store-buttons img {
    height: 40px;
    margin-right: 1rem;
}


@media (max-width: 768px) {
    .contact-main {
        margin-top: 100px;
        display: inline-block;
        height: 100%;
    }
    .sidebar1 {
        width: 100%;
        background-image:url(../rrn-image/siginin.jpeg);
        color: white;
        padding: 2rem;
        display:block ;
        flex-direction: column;
        justify-content: space-between;
       
    }

    .sidebar2 {
        width: 100%;
        height: 900px;
        background-image: url(../rrn-image/register.jpg);
        background-size: cover;
        color: white;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        display: none;
    }

    .main {
        width: 100%;
        background-color: #f8f8f8;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-form {
        width: 100%;
        box-shadow: none;
        padding: 0;
    }
}

.btn-social {
    /* display: flex; */
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    border: none;
    background-color: #f5f5f5; /* Adjust as needed */
    color: #333; /* Adjust as needed */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-social:hover {
    background-color: #e0e0e0; /* Adjust as needed for hover effect */
}

.icon {
    width: 20px; /* Adjust icon size */
    height: 20px; /* Adjust icon size */
    margin-right: 10px; /* Space between icon and text */
}

.separator-container {
    display: flex;
    align-items: center;
    margin: 20px 0; /* Space above and below */
}

.separator {
    flex-grow: 1;                /* Line takes available space */
    border: none;                /* Remove default border */
    border-top: 1px dashed #ccc; /* Dashed line style */
}

.or-text {
    margin: 0 10px; /* Space around the text */
    font-weight: bold; /* Make the text bold */
    color: #333; /* Color of the text */
}