﻿
@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400;700&display=swap');

body {
    min-height: 100vh;
    overflow: hidden;
}

* {
    font-family: 'Rethink Sans', sans-serif;
}



.container {
    width: 100%;
    max-width: 100% !important;
    text-align: center;
    height: 100vh;
    width: 100%;
    margin: 0;
}

.image-section {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}


.logo {
    background-image: url('/images/logo.png');
    height: 41px;
    width: 29px;
    background-size: cover;
    margin-bottom: 18px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}


.google-container {
    margin-top: 24px;
    cursor: pointer;
    width: 100%;
    border: 1px solid #B7B7B7;
    border-radius: 100px;
    height: 40px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1E1E1E;
}

.google-icon {
    background-image: url('/images/google-icon.png');
    height: 14px;
    width: 13px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 6px;
}

.divider {
    margin: 24px 0px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    width:100%;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ccc;
    }

    .divider::before {
        margin-right: 10px;
        width: 370px;
    }

    .divider::after {
        margin-left: 10px;
    }

    .divider span {
        color: #999;
        font-size: 14px;
        text-transform: uppercase;
    }

.input-field {
    width: 100%;
    border: none;
    background: #F3F2F2;
    padding: 12px 16px;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

.submit-button {
    width: 100%;
    color: white;
    background: #212121;
    border-radius: 100px;
    margin-top: 25px;
    padding: 10px 0;
    border: none;
}

a {
    color: #7E6AF7;
    font-weight: 500;
    font-size: 12px;
}

.text-danger {
    text-align: left !important;
    width: 100%;
    font-size: 13px;
}

.signup-container {
    font-size: 12px;
    margin-top: 24px;
}

.password-guidelines {
    background: #FFE3E7;
    border-radius: 4px;
    padding: 8px;
    margin-top: 8px;
}

input[type="checkbox"] {
    accent-color: #7E6AF7;
}

.cursor-pointer {
    cursor: pointer;
}

.text-align-left {
text-align:left;
}

.validation-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media(max-width:410px) {
    .section-width {
        width: 360px;
    }
}

@media(min-width:410px) {
    .section-width {
        width: 400px;
    }
}
