@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: Poppins, sans-serif;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
}

.main-login {
    width: 100vw;
    height: 100vh;
    background: #201b2c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login {
    width: 40vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.master {
    font-size: 53px;
    color: #fff !important;
    font-weight: 700;
}

.dev {
    color: rgb(125, 125, 125);
}

.dev-text {
    font-weight: 600;
    color: #969696;
    transition: 1s ease-in-out;
}

.dev-text:hover {
    color: #f7d935;
    transition: 1s ease-in-out;
}

.left-login > h1 {
    color: #77ffc0
}

.right-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-login {
    width: 60%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 90px 35px;
    background: #2f2841;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
}

.card-login > h1 {
    color: #0f8;
    font-weight: 800;
    margin: 0;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

.textfield > input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfield > label {
    color: #f0ffffde;
    margin-bottom: 10px;
}

.textfield > input::placeholder {
    color: #f0ffff94;
}

.btn-login {
    width: 100%;
    padding: 16px 0px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2b134b;
    background: #00ff88;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8052;
    transition: 1s ease;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-login:hover {
    color: #333;
    cursor: pointer;
    border: none;
    text-shadow: 0 0 4px #fff;
    background-color: #ffffff;
    transition: 1s ease;
}

.register {
    color: white;
    font-size: 15px;
}

.register > a {
    color: #00ff88;
    text-decoration: none;
    text-transform: uppercase;
    transition: 1s ease;
}

.register > a:hover {
    color: white;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-shadow: 0 0 4px #fff;
    transition: 1s ease;
}