/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


section .container form h2{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    color: #ffffff;
}

section .container form input{
    position: relative;
    width: 100%;
    padding: 10px;
    background: #f5f5f5;
    color: #333;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 8px 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
}

section .container form input[type="submit"]{
    max-width: 100px;
    background: #21a3a5;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.5s;
}

section .container form .signup{
    position: relative;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
}

section .container form .signup a{
    font-weight: 600;
    text-decoration: none;
    color: #677eff;
}

.class_logo{
    width: 100%;
    text-align: center;
}

#logo{
  width: 100px;
  height: 100px;
}

#icro_loading{
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 100000;
}


.video-background {
    position: relative;
    width: 100%; /* Full width */
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide overflowing parts */
    display: flex; /* For centering content */
    justify-content: center;
    align-items: center;
    background: url('your-fallback-image.jpg') no-repeat center center;
    background-size: cover; /* Fallback image for unsupported browsers */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; /* Match the viewport width */
    height: 100vh; /* Match the viewport height */
    object-fit: cover; /* Maintain aspect ratio and ensure the video fully covers the div */
    z-index: -1; /* Keep the video behind content */
}

.video-background .container {
    position: relative; /* Ensure content is above the video */
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px; /* Optional: add some padding to the content */
}
