@import url('font-awesome.min.css');
@import url('bootstrap.min.css');

body {
    background: linear-gradient(135deg, #79add5, #ffffff);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.6s ease-in-out;
}

 /* Brand logo */
.brand-logo {
    display: block;
    margin: 0 auto 1rem auto;
    width: 110px;
    height: 110px;
    object-fit: contain;
}
.brand-name {
    color: #3d5e84;
}
.sub-brand-name {
    color: #79add5;
}
/* Buttons */
.btn-default {
    background-color: #3d5e84;
    color: #ffffff;
}
.btn-default:hover {
    background-color: #79add5;
    color: #fff;
}

 /* Footer styling */
.footer {
    margin-top: 30px;
    text-align: center;
    color: #3d5e84;
    font-size: 0.7rem;
    font-weight: bold;
}

.footer a {
    color: #3d5e84;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
