@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chocolate+Classical+Sans&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url(./assets/background3.jpg);
    background-size: cover;
}

.container {
    position: absolute;
    width:  90%;
    height: 90%;
    background-color: white;
    border-radius: 20px;
    border: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    padding: 10px;
}
 
.quote {
    height: 100%;
    width: 40%;
    background-image: url(./assets/background3.jpg);
    background-size: cover;
    border-radius: 20px; 
}



.text {
    color: white;
    position: absolute;
    bottom: 0;
    padding: 45px;
}

.text1 {
    font-family:  "Tinos", serif;
    font-size: 60px;
    color: #ccc;
    line-height: 55px;
    margin-bottom: 15px;
}

.text-p {
    font-family: "Chocolate Classical Sans", sans-serif;
    font-weight: 100;
    color: #9e9e9e;
    font-size: 15px;
}.top {
    font-family: "Chocolate Classical Sans", sans-serif;
    color: #a0a0a0;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 30px;
}

.top div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1; 
}

.top hr {
    flex: 1;
    border: none;
    border-top: 1px solid #a0a0a0;
    height: 1px; 
}

.logo {
    font-family: 'Tinoc', serif;
    text-align: center;
    font-size: 20px;
}

.form {
    width: 400px;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.titles {
    font-family:  "Tinos", serif;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.titles p {
    font-family:  "Poppins", sans-serif;
    white-space: nowrap;
}

.titles h1{
    font-weight: 300;
    font-size: 45px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password, .email {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.email input, .password input {
    height: 30px;
    border: none;
    border-radius: 15px;
    padding: 10px;
    outline: none;
}

.elements {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 15px;
    cursor: pointer;
}

.signin-btn {
    background-color: black;
    color: white;
    border-radius: 10px;
    height: 40px;
    border: none;
    font-size: 15px;
    margin-bottom: 5px;
    cursor: pointer;margin-top: 10px;
}


.google-btn {
    background-color: white;
    color: black;
    border-radius: 10px;
    height: 40px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.signup {
    text-align: center;
    margin-top: 25px;
    font-weight: 100;
}