@font-face {
    font-family: 'Inter-Bold';
    src: url('Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    background-color: #1A1A1A;
    overflow-x: hidden;
}

/*load*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

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

.LoginMsg {
    font-family: 'Inter-Bold', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100px);
    z-index: 1001;
}

/*login*/

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 90vh;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    background-color: rgba(26, 26, 26, 1);
    z-index: 10;
}

form input[type="email"], input[type="password"] {
    color: #fff;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    padding: 15px 0;
    padding-left: 10px;
    min-width: 50vw;
    border-radius: 8px;
    border: 1px solid #0D0D0D;
    background: #262626;
    outline: none;
}

form p a {
    color: #5E60CE;
    text-decoration: none;
    font-size: 30px;
    font-family: 'Inter-Bold', sans-serif;
}

form p {
    color: #4EA8DE;
    text-decoration: none;
    font-family: 'Inter-Bold', sans-serif;
}

label {
    font-family: 'Inter-Bold', sans-serif;
    font-size: 50px;
    color: #4EA8DE;
}

form input[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    color: #F2F2F2;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    border-radius: 8px;
    background: #1E6F9F;
    border: none;
    padding: 16px;
    cursor: pointer;
    transition: all 0.1s;
}

form input[type="submit"]:active {
    scale: 0.95;
    transition: all 0.1s;
}

#errMsg {
    font-family: 'Inter-Bold', sans-serif;
    color: #1E6F9F;
    padding-top: 20px;
    opacity: 1;
    transition: all 0.5s;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #0D0D0D;
}

.errmsg h2 {
    font-family: 'Inter-Bold', sans-serif;
    color: #1E6F9F;
}

.errmsg p {
    font-family: 'Inter-Bold', sans-serif;
    color: #1E6F9F;
}