@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f6f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    display: flex;
    width: 800px;
    max-width: 100%;
    min-height: 480px;
    overflow: hidden;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    background: #f6f5f7;
    position: relative;
}

.image-container .logo {
    width: 250px;
    margin-top: -45px;
    margin-bottom: -80px;
    margin-left: -175px;
}

.image-container .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    padding: 20px;
}

.hidden {
    display: none;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

h1 {
    font-weight: bold;
    margin-bottom: 15px;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

button {
    border-radius: 20px;
    border: 1px solid rgb(118, 159, 205);
    background-color:rgb(118, 159, 205);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 10px 0;
}

button:hover {
    transform: scale(1.1);
    transition: all 0.7s ease;
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

form input {
    background: #f6f5f7;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

#signinLink{
    text-decoration: none;
    color: rgb(118, 159, 205);
}
#signupLink{
    text-decoration: none;
    color: rgb(118, 159, 205);

}


@media (max-width: 764px) {
    .container {
        flex-direction: column;
        width: 90%;
    }

    .image-container {
        display: none;
    }

    .form-container {
        width: 100%;
    }
    p{
        font-size: 13px;
    }
}