
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

:root {
    font-size: 100%;
    font-size: 16px;
    line-height: 1.5;
    --primary-blue:var(--primary-blue);
}

body{
    padding: 0;
    margin: 0;
    font-family:'Open Sans', sans-serif;
    font-weight: 300;
}

/* Custom CSS */
body, html {
    height: 100%;
    margin: 0;
}
.bg-image {
    background-image: url('/assets/images/agstar_login.svg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100%;
}
.login-card {
    width: 100%;
    max-width: 400px;
    margin: auto;
}
.card{
    --bs-border-width: 0;
}
.card-footer {
    text-align: center;
    padding: 10px;
    margin-top: 8em; /* Adjust margin as needed */

}

.brownslogo {
    display: block;
    margin: 0 auto 40px;
    width: 50px; /* Asssdjust size as needed */
}
.card-footer {
    text-align: center;
    padding: 10px;
    background-color: #ffffff; /* Adjust background color as needed */
  
}

h1{
    font-size: 2.25rem;
    font-weight: 700;
}

h2{
    font-size: 1.5rem;
    font-weight: 700;
}

a{
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.small{
    font-size: 80%;
    text-align: center;
}
.split-screen{
    display: flex;
    flex-direction: column;
}

.left {
    height: 200px;
}

.left, .right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left {

    background-image: url(/assets/images/agstar_login.svg);
    background-size: cover;
    background-color: #bce7a2;

}

.left .copy{
    color: black;
    text-align: right;

}

.left p {
    font-weight: 400;
}

.right .copy{
    color: black;
    text-align: center;
}

.right .copy p {
    margin: 1.5em 0;
    font-size: 0.875rem;
}

.right form {
    width: 328px;
}

.logo img {
    display: block;
    margin: 0 auto 64px;
    width: 250px; /* Adjust size as needed */
}
.checkbox-container input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-container{
    display: block;
    position: relative;
    padding-left: 0;
    cursor: pointer;
    user-select: none;
    margin: 0 0 1.25rem 0;
    font-size: 8px;
}

.checkbox-container input:checked~.checkmark{
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.checkmark{
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border: 1px solid #08f356;
    border-radius: 2px;
    top: 3px;
    left: 0;
}
.checkmark:after{
    content:"";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after{
    display: block;
}

.checkbox-container .checkmark:after{
    border: solid white;
    border-width: 0 3px 3px 0;
    width: 5px;
    height: 10px;
    left: 8px;
    top: 4px;
    transform: rotate(45deg);
}

.signup-btn{
    display: block;
    width: 100%;
    background: #83C341;
    color: white;
    font-weight: 700;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signup-btn:hover{
    background: #19c552;
    cursor: pointer;
}
@media screen and (min-width: 900px) {
    .split-screen{
            flex-direction: row;
            height: 100vh;
        }
    .left,
    .right{
        display: flex;
  
        height: auto;
    }
    
}

.tet{

    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #83C341;
    padding: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;

}

.input-group {
    position: relative;
    margin: 20px 0;
}

    .input-group label {
        position: absolute;
        /*top: 50%;*/
        left: 5px;
        transform: translateY(-50%);
        font-size: 16px;
        color: #83C341;
        padding: 0 5px;
        pointer-events: none;
        transition: .5s;
        top: 0;
        font-size: 12px;
        background: #ffffff;
    }

.input-group input {
    width: 320px;
    height: 40px;
    font-size: 16px;
    color: #64af1a;
    padding: 0 10px;
    background: white;
    border: 1.2px solid #8eb469;
    outline: none;
    border-radius: 5px;
}

.input-group input:focus~label,
.input-group input:valid~label {
    top: 0;
    font-size: 12px;
    background: #ffffff;
}

       