:root {
    --bs-primary: #003366; /* PSU Navy Blue */
    --bs-primary-rgb: 0, 51, 102;
}

body {
    overflow: hidden; /* Hide scrollbars */
}

.bg-image {
    background-image: url('img/Artboard.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
}

.bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.4); /* Dark blue overlay */
}

.security-text, .contact-info {
    position: relative; /* To be on top of the overlay */
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.security-text {
    align-self: center;
    text-align: center;
    margin-top: 20%;
}

.security-text h1 {
    font-size: 2.5rem;
    font-weight: 300;
}

.security-text h2 {
    font-size: 1.8rem;
    font-weight: 300;
}


.contact-info {
    position: absolute;
    bottom: 20px;
    left: 40px;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.7), rgba(0, 84, 166, 0.5));
    padding: 10px 20px;
    border-radius: 5px;
}

.contact-info p {
    margin: 0;
    font-size: 1.1rem;
}


.login {
    min-height: 100vh;
}

.logo-img {
    max-width: 200px;
    margin-bottom: 1rem;
}

.btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-floating label {
    color: #999;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
}

a {
    color: var(--bs-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}