 body {
            margin: 0;
        }

        canvas {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            height: 100%;
            width: 100%;
        }

        .main {
            position: relative;
            z-index: 1;
        }

        
        
        #logo3D {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1001;
        }
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /* border:1px solid black; */
    background-size: cover;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;



}

.main {
    width: 100%;
    height: 100vh;
    min-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    flex-wrap: wrap;

}

.LoginCard {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /*border-radius: 10px;*/
    overflow: hidden;
    /*position: relative;*/
}

.background-image {
    width: 100%;
    height: 100%;
    position: absolute;
    filter: brightness(50%);
}

.Left,
.Right {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*backdrop-filter: blur(10px);*/
    /*background: #ffffffa1;*/
}

.Right{
    background: #ffffff;
}
.form{
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, #0790e821);
    z-index: 0;
}

.imageframe {
    width: 200px;
    height: 200px;
}

.tagline {
    font-size: 18px;
    opacity: 0.7;
}

.form label {
    position: relative;
}

.title {
    font-size: 5rem;
    text-align: center;
    color: #0790e8;
}

.inputGroup {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    /* width: 450px; */
    position: relative;
    margin: 20px 0;
}

.inputGroup input {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 10px;
    width: 80%;
}

.inputGroup label {
    
    font-size: 100%;
    position: absolute;
    left: 40px;
    padding: 1em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgb(100, 100, 100);
}

.inputGroup :is(input:focus, input:valid)~label {
    transform: translateY(-60%) scale(.8);
    margin: 0em;
    margin-left: 0.5em;
    padding: 0.4em;
    background-color: white;
}

.inputGroup :is(input:focus, input:valid) {
    border-color: rgb(150, 150, 200);
}

button {
    --color: #0790e8;
    font-family: inherit;
    display: inline-block;
    width: 80%;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
    cursor: pointer;
    font-size: clamp(14px, 17px, 20px);
    z-index: 1;
    border-radius: 10px;
    position: relative;
    align-items: center;
    font-weight: 700;
    background-color: #0790e8;
    color: white;
}

image {
    width: 20%;
    height: 80%;
    background-fit:cover;
}

button:hover {
    color: white;
    transition: all 0.3s ease;
}

h1{
    font-size: clamp(25px, 35px, 45px);
    text-align:center;
}

@media screen and (max-width: 1024px) {
    .LoginCard {
        flex-direction: column;
        height: auto;
    }

    .Left,
    .Right {
        width: 100%;
        height: 50%;
    }

    .Right {
        padding: 20px;
    }

    .title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .inputGroup {
        width: 100%;
        max-width: 300px;
    }

    .title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 500px) {
    .inputGroup input {
        padding: 0.6em;
        width: 100%;
    }
    .input{
        width: 100%;
    }
    h1{
    font-size:25px;
    }
    

    .LoginCard{
    width:100%;
    height: 600px
    }
    .title {
        font-size: 4.5rem;
    }

    .inputGroup label {
        padding: 1em;
    }

    button {
        font-size: 15px;
        height: 2.2em;
        line-height: 2.1em;
    }
    .background-image{
        background-size:cover;
        display:none;
    }
    .main{
        width:100%;
    }
}
.det{
    margin: 20px;
    transform:translateY(-45px);
}