﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
:root {
--color-primary:#ec6b37;
--color-secondary:#7a39b9;
--color-black:#000;
--color-blue-light:#01a7e1;
--color-blue-dark:#204295;
--color-white:#fff;
}


body {
    font-family: "Space Grotesk", serif;
    font-size: 16px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    position: relative;
    background: url(../images/login-bg.jpg) no-repeat center top;
    box-sizing: border-box;
}

.login-wrapper {
    height:100vh;
    padding:20px;
    display:flex;
    justify-content:center;
    align-items:center;

}
.blackText{
    color:#333333;
}
/*
.login-top-box {
    width: 100%;
    height: 440px;
    border-top: 0px solid transparent;
    border-left: 0px solid var(--color-white);
    border-bottom: 85px solid transparent;
    background: transparent;
    border-radius: 40px 40px 0 0;
    border-right: 325px solid var(--color-white);
    position:relative;
}
.login-bottom-box {
    width: 100%;
    height: 180px;
    border-top: 85px solid transparent;
    border-left: 325px solid var(--color-white);
    border-bottom: 0px solid var(--color-white);
    background: transparent;
    border-radius: 0 0 40px 40px;
    border-right: 0px solid var(--color-white);
    margin-top: -70px;
    position:relative;
}*/
.login-upper .login-header {
    text-align: center;
}
.login-title {
    font-size: 50px;
    line-height: 60px;
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color:var(--color-blue-light);
    text-align:center;
}
.module {
    
    background: linear-gradient(179deg,rgba(42, 123, 155, 0) 0%, rgba(255, 255, 255, 0.8) 18%, rgba(255, 255, 255, 0.88) 54%, rgba(255, 255, 255, 0.82) 83%, rgba(237, 221, 83, 0) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90vh;
}
.login-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align:center;
}'

.login-upper p {
    font-size: 18px;
    color: var(--color-blue-dark);
    font-weight: 600;
    text-align:center;
}
.login-bottom {
    position: absolute;
    z-index: 9;
    width: 91%;
    padding: 10px 20px;
    text-align:center;
}
.register-now {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #666;
}

.register-now a {
    color: var(--color-blue-light);
}
.login-btn {
    background: var(--color-primary);
    padding: 8px 35px;
    color: var(--color-white);
    font-size: 18px;
    border: 0;
    border-radius: 50px;
}
    .login-btn:hover {
    background:var(--color-black);
    }
    .form-group label {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--color-black);
}