@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');


::placeholder{
    color: whitesmoke;
    opacity: 1;
    font-size: 15px;
}

a{
    color:burlywood;
    text-decoration: none;
}

a:hover{
    color: crimson;
    transition: 0.5s ease;
}

body{
    background-color: black;
    color: white;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.left{
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    margin-left: 30px;
}

.intro-text{
    font-weight: 500;
    margin-top: 20px;
}

.grey-text{
    color: grey;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

.login-details{
    margin-top: 20px;
}

.login-details p{
    margin-top: 10px;
}

input{
    all:unset;
    border-bottom: 1px solid white;
}

label{
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 5px;
    display: block;
    color: grey;
    font-size: 12px;
}

.sign-up-btn {
    margin-top: 30px;
    font-weight: 500;
    padding: 10px 20px;
    width: calc(100% - 150px);
    font-size: 13px;
    background-color: crimson;
    color: beige;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.5s;
}

.sign-up-btn:hover {
    background-color: rgb(200, 8, 8);
}

.google-sign-up {
    margin-top: 20px;
    font-weight: 500;
    padding: 10px;
    width: calc(100% - 150px);
    font-size: 13px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s;
}

.google-sign-up:hover {
    background-color: lightgrey;
}

.google-sign-up svg {
    margin-right: 5px;
}


.login-text{
    margin-top: 20px;
    font-size: 13px;
}

.right {
    position: relative; 
    width: 100%;
    max-width: 800px;
    height: 80vh;
    background-image: url('https://user-images.githubusercontent.com/33485020/108069438-5ee79d80-7089-11eb-8264-08fdda7e0d11.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.737); 
}

.img-text {
    font-family: "Playball", cursive;
    font-size: 50px;
    font-weight: 700;
    margin: 10px;
    color: white; 
    z-index: 1; 
}

.img-text-below {
    margin: 10px;
    font-weight: 300;
    color: white; 
    z-index: 1; 
}

.above-img{
    z-index: 1;
}
