﻿/*@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');*/

@font-face {
    font-family: "Poppins";
    src:url(../Content/Fonts/Poppins/Poppins-Regular.ttf)
}

body {
    background: linear-gradient(rgb(12 12 12 / 3%), rgb(12 12 12 / 40%)),url(Images/bg1.jpg);
    background-size: cover;
}

:root {
    --font: "Poppins", sans-serif;
}

.appTitle {
    color: white;
}

.lblRegister {
    display: none;
}

.firstLetter {
    font-size: clamp(4rem, -1.711rem + 8.0925vw, 8rem);
    font-family: var(--font);
    font-weight: bold;
    text-shadow: 5px 4px 6px rgba(0, 0, 0, 1)
}

.subLetters {
    font-size: clamp(3rem, -0.5491rem + 4.6243vw, 5rem);
    font-family: var(--font);
    font-weight: 600;
    text-shadow: 5px 4px 6px rgba(0, 0, 0, 1)
}

.button {
    height: 50px;
    width: 150px;
    position: relative;
    background-color: #ffffff63;
    cursor: pointer;
    border: 1px solid white;
    overflow: hidden;
    border-radius: 30px;
    color: white;
    transition: all 0.5s ease-in-out;
}

.btn-txt {
    z-index: 1;
    font-family: var(--font);
    font-weight: 600;
    letter-spacing: 1px;
}

.type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #ffffff57;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.button:hover {
    box-shadow: 1px 1px 200px #252525;
    color: #fff;
    /*border: none;*/
}

.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

.login-box{
    font-family:var(--font);
}

.register-box1{
    width:720px;
}

.inputGroup {
    font-family: 'Segoe UI', sans-serif;
    margin: 1em 0 1em 0;
    position: relative;
}

    .inputGroup input {
        font-size: 100%;
        padding: 0.8em;
        outline: none;
        border: 2px solid rgb(200, 200, 200);
        background-color: transparent;
        border-radius: 5px;
        width: 100%;
    }

    .inputGroup label {
        font-size: 100%;
        font-weight: 500 !important;
        position: absolute;
        left: 0;
        padding: 0.8em;
        margin-left: 0.5em;
        pointer-events: none;
        transition: all 0.3s ease;
        color: #747474d9;
    }

    .inputGroup :is(input:focus, input:valid) ~ label {
        transform: translateY(-50%) scale(.9);
        margin: 0em;
        margin-left: 1.3em;
        padding: 0.4em;
        color: black;
        background-color: #ffffff;
    }

    .inputGroup :is(input:focus, input:valid) {
        border-color: rgb(255 181 0);
    }

@media(max-width:576px) {
    .appTitle {
        display: none;
    }

    .lblRegister {
        display: block;
    }
}

@media(max-width:720px) {
    .appTitle {
        display: none;
    }

    .lblRegister {
        display: block;
    }

    .register-box1 {
        width: 90%;
    }

}
