:root {
    --max-width: 1200px;
    --font-primary: 'Roboto Mono', monospace;
}

body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

a:visited {
    color: #000000;
}
a {
  color: black;
}

.signin-container {
    width: 360px;
    padding: 50px;
    /*padding-bottom: 25px;*/
    background: rgb(235, 235, 235);
    border-radius: 4px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Main Content */
main {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

section {
    width: 48%;
}


.highlight {
    font-weight: 600;
}

.red {
    color: red;
}

.google-signin {
    width: 85%;
    padding: 9px;
    background: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: lighter;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    margin-left: 22px
}


.logo {
    display: block;
    margin: 0 auto;
    width: 220px;
    height: auto;
    max-width: 100%;
}



.google-signin img{
    height: 25px;
}

.signin-form img{
    width: 18px
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgb(200, 200, 200);
    margin-top: 25px;
    font-size: 12px;
    font-weight: lighter;
    width: calc(100% + 100px);
    margin-left: -50px
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgb(200, 200, 200);
}
.separator::before{
    margin-right: 5px;
}
.separator::after{
    margin-left: 5px;
}

.signin-form{
    margin-top: 35px;
    margin-left: -10px;
}


.input-group {
    margin-bottom: 12px;
}

.input-group input{
    width: 75%;
    border: none;
    border-radius: 4px;
    height: 36px;
    font-size: 14px;
    background: white;
}

.forgot-password {
    display: block;
    text-align: right;
    color: black;
    margin-top: 5px;
    text-decoration: none;
    font-size: 10px;
    margin-right: 30px;

}

.signin-button {
    width: 84%;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    text-align: center;
    margin-top: 35px;
    display: block;
    margin-left: 30px;
}

.error-message {
    color: #dc2626;
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

.success-message {
    color: #16a34a;
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}
