body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.container {
    margin-top: 50px;
}

.card {
    border: none;
    border-radius: 10px;
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    color: #333;
}

.form-label {
    color: #555;
    font-size: .98rem;
}

.form-control {
    border-radius: 5px;
    padding: 5px;
    font-size: 1rem;
}
.form-control::placeholder{
    font-size: .98rem;
    color: rgb(148, 143, 143);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form-control:focus{
    box-shadow: none;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.link-primary {
    color: #007bff;
    text-decoration: none;
}

.link-primary:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* New styles for Google sign-up link */
.google-signup {
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}



.google-icon {
    width: 35px; 
    height: 35px;
    margin-right: 8px;
}

.or-separator {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

.error-message{
    color: red;
    font-size: 0.75rem;
    display: none;
}