

.loginContainer {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 20px;
    height: 100vh;
    text-align: left;
    column-gap: 20px;
}

.boldText {
    font-weight: bold;
    color: black;
}

.loginCoverImage {
    border-radius: 15px;
    width: 95%;
    height: 95%;
    background-color: #7C7C7C;
}

.signUp, .login {
    display: flex;
    flex-direction: column;
    margin: 50px;
}

.signUp form, .login form, .forgotPassword form {
    display: flex;
    flex-direction: column;
}

.loginContent {
    border-bottom: 1px solid #7C7C7C;
    margin-bottom: 30px;
}

.loginContent h2 {
    font-weight: 400;
    font-size: 32px;
    margin: 0;
}

.loginContent p {
    color: #7C7C7C;
    font-size: 18px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 30px;
}

.switchViewBtn {
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: #7C7C7C;
}

button[type="submit"], .button {
    border-radius: 15px;
    color: white;
    border: none;
    background-color: #D6482C;
    width: 100%;
    font-size: 24px;
    padding-block: 10px;
    cursor: pointer;
    margin-block: 20px;
}

.login input, .signUp input, .forgotPassword input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #7C7C7C;
    font-size: 16px;
}

.login label, .signUp label, .forgotPassword label {
    width: 100%;
    margin-block: 10px;
    font-size: 16px;
    align-items: center;
}

.passwordLabel {
    display: grid;
    grid-template-columns: 70% auto;
}

.passwordLabel button {
    cursor: pointer;
    background: none;
    border: none;
}

@media screen and (max-width: 600px) {
    .loginContainer {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .loginDetails h1 {
        padding-inline: 20px;
    }

    .loginCoverImage {
        display: none;
        visibility: hidden;
    }
}