@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
.logo-image{
    max-width:200px;
    height:auto;
    border-bottom: 1px;
    border-color: black;
    /* margin-left: 0px; */
    justify-content: left;
    /* position:relative; */
}

#myphoto{
    text-align: center;
}

.myphoto {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000; /* Ensure it's above other content */
    background-color:lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.myphoto1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000; /* Ensure it's above other content */
    background-color:lightgray;
    display: block;
    justify-content: center;
    align-items: center;
}

.myphoto1{
    border-radius: 20px;
    border: 2px solid red;
    animation: exitFullScreen 1s forwards;
}

@keyframes exitFullScreen {
    0% {
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
    }
    100% {
        top: 0; /* Adjust to your original position */
        left: 0; /* Adjust to your original position */
        width: 100%; /* Adjust to your original width */
        height: 100%; /* Adjust to your original height */
    }
}

.myphoto img {
    margin-top:13%;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
    max-height: auto;
    animation: fadeAnimationLeft 1s forwards;
}

@keyframes fadeAnimationLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.myphoto1 img {
    margin-top:20%;
    margin-left: 10%;
    margin-right: auto;
    max-width: 80%;
    max-height: auto;
    border-radius: 10px;
}

.p1 {
    font-size: xx-large;
    font-weight: bolder;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    animation: expandFromCenter 2s ease-out forwards;
    animation-delay: 1s;
}

@keyframes expandFromCenter {
    0% {
        width: 0;
        margin-left: 50%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        margin-left: 0;
        opacity: 1;
    }
}

.p4 {
    font-size: x-large;
    font-weight: bolder;
    overflow: hidden;
}

.p1, .p2, .p3 {
    color:#004e9b;
    text-align:center;
}

.p4, .p5, .p6 {
    color:#004e9b;
    text-align:center;
}

.p2{
    font-weight:bolder;
    margin-top: 30px;
}

.p5{
    font-weight:bold;
    margin-top: 30px;
}

.p2, .p3 {
    font-size:large;
    animation: fadeInUp 1s forwards;
    animation-delay: 2s;
    opacity: 0;
}

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

.p5, .p6 {
    font-size:medium;
}

.row{
    width: 100vw;
}

.col-md-6, .col-md-5{
    width: 50vw;
    height: 90vh;
    margin-left: 20px;
    margin-right: 20px;
}
.col-md-6{
    /* border: 2px solid red; */
    border-radius: 20px;
}

/* video{
    margin-left: 3%;
    height:100vh;
    width:50vw;
} */

/* .video-text{
    margin-top: -30%;
    margin-left: 40%;
} */

.Remax-col{
    padding:5%;
}

#loginform{
    place-items: center;
}
 
form {
    font-family: 'Montserrat', sans-serif;
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    /* border: 1px solid #ccc;
    border-radius: 5px; */
    position:relative;
    background-color: #f5f5f5;
    border: 2px solid #004e9b;
    border-radius: 20px;
}

#authenticate{
    background-color: transparent;
    color: black;
    border: 1px solid lightgray;
}

#authenticate:hover{
    box-shadow: 0.2rem 0.2rem 0.2rem 0.2rem #0002;
}

label {
    font-weight: bold;
    margin-left: 10%;
}
 
input {
    /* width: 100%; */
    padding: 10px;
    background-color:white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    max-height:50px;
    margin-bottom: 10px;
}

input:focus{
    background-color: white !important;
}

#mail{
    width:80%;
    margin-left: 10%;
}

#password {
    width:80%;
    margin-left: 10%;
}

#eyediv{
    margin-left: -8%;
}

#signin{
    font-size:large;
    font-weight: bold;
    width: auto;
    height:auto;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    color:white;
    margin-left: 40%;
    background-color: #004e9b;
}
 
#signin:hover{
    background-color: white;
    border-color: #004e9b;
    color:#004e9b;
}

.error-message {
    color: red;
    text-align: center;
}

.forgetpwd {
    text-align: center;
    margin-left: 37%;
}

.loader {
    position: fixed;
    top: 47%;
    left: 73%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border-top: 5px solid #459199;
    border-left: 3px solid #57b3bd;
    border-bottom: 1px solid white;
    border-right: transparent;
    animation: spinner 0.5s linear infinite;
    z-index: 9999;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#authenticate{
    text-decoration: none;
    background-color: lightgray;
    border-color: blue;
    color: blue;
    font-weight: bold;
}
#authenticate:hover{
    text-decoration: none;
    background-color: white;
    color:blue;
    /* border: 2px solid lightgray; */
}
#authenticate:focus{
    border: none;
    outline: 3px solid lightgray;
}


@media (max-width: 960px){
    #Remax-col {
        display: none;
    }
}