:root {
    --background-color: #EEEE;
    --vertical-line-border-left-color: #A6A6A6;
    --input-icon-color: grey;
}

html, body {
    height: 100%;
    margin: 0;
    background-color: var(--background-color);
}

.image-logo {
    width: 280px;
    margin-bottom: auto;
}

.sign-in-header {
    font-weight: bold;
    font-size: 3.5rem;
    color: #09421F;
}

.sign-in-subheader {
    font-size: 2.5rem;
}

.vertical-line {
    border-left: 2px solid var(--vertical-line-border-left-color);
    padding-top: 10pc;
    height: 45vh;
}

.vertical-line-forget {
    border-left: 2px solid var(--vertical-line-border-left-color);
    padding-top: 10pc;
    height: 65vh;
}

.card {
    border-radius: 20px;
}

.form-control-strip {
    border-radius: 10px;
}

.btn-signin {
    border-radius: 80px;
    height: 55px;
    width: 100%;
    text-transform: uppercase;
    font-size: large;
    border: 2px solid #09421F;;
    font-weight: 700;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.larger-card {
    width: 85%;
    max-width: 500px;
    margin-bottom: 3pc;
}

.larger-card-reset {
    width: 85%;
    max-width: 500px;
    margin-bottom: 3pc;
    
}

.email-strip {
    position: relative;
}

.email-strip input[type="email"] {
    padding-left: 40px;
    height: 55px;
    background-image: url('data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-user%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M8%207a4%204%200%201%200%208%200a4%204%200%200%200%20-8%200%22%20/%3E%3Cpath%20d=%22M6%2021v-2a4%204%200%200%201%204%20-4h4a4%204%200%200%201%204%204v2%22%20/%3E%3C/svg%3E');
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 5px center;
    border-width: 2px;
    border-style: solid;
    border-color: var(--input-icon-color);
}

.password-strip {
    position: relative;
}

.password-strip input[type="password"] {
    padding-left: 40px;
    height: 55px;
    background-image: url('data:image/svg+xml,%3Csvg%20%20xmlns=%22http://www.w3.org/2000/svg%22%20%20width=%2224%22%20%20height=%2224%22%20%20viewBox=%220%200%2024%2024%22%20%20fill=%22none%22%20%20stroke=%22currentColor%22%20%20stroke-width=%222%22%20%20stroke-linecap=%22round%22%20%20stroke-linejoin=%22round%22%20%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-lock%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M5%2013a2%202%200%200%201%202%20-2h10a2%202%200%200%201%202%202v6a2%202%200%200%201%20-2%202h-10a2%202%200%200%201%20-2%20-2v-6z%22%20/%3E%3Cpath%20d=%22M11%2016a1%201%200%201%200%202%200a1%201%200%200%200%20-2%200%22%20/%3E%3Cpath%20d=%22M8%2011v-4a4%204%200%201%201%208%200v4%22%20/%3E%3C/svg%3E');
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 5px center;
    border-width: 2px;
    border-style: solid;
    border-color: var(--input-icon-color);
}

.Code-Strip input[type="Code"] {
    border-width: 2px;
    border-style: solid;
    border-color: var(--input-icon-color);
}

/* Media Queries for Responsive Design */

/* Small Devices (Mobiles) */
@media only screen and (max-width: 600px) {
    .vertical-line {
        display: none;
    }
    .vertical-line-forget {
        display: none;
    }
    .sign-in-header {
        font-size: 1.8rem;
        padding-left: 1pc;
    }
    .sign-in-subheader {
        font-size: 1.2rem;
        padding-left: 1pc;
        padding-bottom: 2pc;
    }
    .larger-card {
        width: 100%;
        margin-bottom: 18pc;
    }

    .larger-card-reset {
        width: 85%;
        max-width: 500px;
        margin-bottom: 5pc;
    }
    
}

/* Medium Devices (Tablets, Laptops) */
@media only screen and (min-width: 601px) and (max-width: 1200px) {
    .sign-in-header {
        font-size: 2rem;
    }
    .sign-in-subheader {
        font-size: 1.5rem;
    }
    .larger-card {
        width: 90%;
    }
}
