﻿/* Reset some spacing */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADER */
.login-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #fff7ff, #f5f1ff);
    padding: 0px;
    width: 100%;
    position: relative;
    height: 90px;
}

.login-logo-left {
    height: 8px;
    margin-right: 10px;
}

.login-header-title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: black;
    line-height: 1.4;
}

/* LOGIN BOX */
.login-container {
    background-color: #eaeaea;
    width: 400px;
    padding: 30px 40px;
    margin-top: 30px;
    border-radius: 15px;
    background: linear-gradient(180deg, #fff7ff, #f5f1ff);
    text-align: center;
    height: 50%
}

.login-seal {
    height: 100px;
    margin: 10px auto;
}

.login-campus-title {
    font-size: 14px;
    margin: 10px 0 2px;
    color: #0033cc;
}

.login-campus-subtitle {
    font-size: 13px;
    color: #0033cc;
    margin-bottom: 20px;
}

.login-form-group {
    margin-bottom: 15px;
    text-align: left;
}

    .login-form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .login-form-group input,
    .login-form-group select {
        width: 100%;
        padding: 8px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }

.login-button-container {
    display: flex;
    justify-content: center; /* center horizontally */
    gap: 10px; /* spacing between buttons */
    margin-top: 20px; /* optional spacing above */
}

#login-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
}

    #login-button:hover {
        background-color: #218838;
    }


/*#signin-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    
}

    #signin-btn:hover {
        background-color: #218838;
    }*/

#bmc-image {
    height: 200px;
}

#bmc-image-header {
    height: 100%;
    position: relative;
    bottom: 8%;
}

/*Header*/
