* {
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
}

.main {
    width: 100vw;
    height: 100vh;
    background-color: #15121d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-side {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-side h1 {
    font-size: 3vw;
    color: #42eaba;
    margin: 0;
}

.left-side h2 {
    font-size: 1vw;
    color: #cbfaed;
    margin: 0;
    font-style: italic;

}

.left-image{
    width: 35vw;
}

.right-side {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;  
    flex-direction: column;
    padding: 15px 20px;
    background: #221d2f;
    border-radius: 25px;
    box-shadow: 0px 10px 40px #00000035;
}

.login-card form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column;
}

.login-card h1 {
    color: #45FFCA;
    margin: 0;
    font-style: italic;
}

.login-card p {
    font-size: 1.4vw;
    color: #ddf9f1;
}

.login-card a {
    font-size: 1.4vw;
    color: #42eaba;
    text-decoration: none;
}


.socialmedia {
    margin-top: 1rem;
    display: flex;
    align-content: center;
}

.socialmedia a {
    text-decoration: none;
}

.socialmedia svg {
    width: 36px;
    height: 36px;
    margin-left: 2rem;
    transition: all .2s ease-in-out;
}

.socialmedia a:first-child svg{
    margin-left: 0;
}

.socialmedia svg:hover {
    fill: #42eaba;
    filter: drop-shadow(1px 1px 10px #42eaba);
}

.text-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;

}

.text-field input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #372f4b;
    color: #ddf9f1;
    font-size: 12pt;
    box-shadow: 0px 10px 40px #0000004a;
    outline: none;
    box-sizing: border-box;
}

.text-field label {
    color: #ddf9f1;
    margin-bottom: 10px;
}

.btn-login {
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 10px;
    outline: none;
    letter-spacing: 1px;
    color: #ddf9f1;
    background-color: #9400FF;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #0000004a;
    transition: all 0.3s ease 0s;
}

.btn-login:hover {
    color: #15121d;
    background-color: #42eaba;
    box-shadow: 0px 10px 40px -12px #42eaba;
}

