body {
    background: linear-gradient(135deg, #048ABF, #0D0D0D);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    color: #333;
    padding: 1rem;
}
.login-wrapper {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    position: relative;
}
.login-logo {
    text-align: center;
}
.login-logo img {
    width: 200px;
    border-radius: 16px;
}
.login-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #048ABF;
    margin-top: 1rem;
}
.input-group-text {
    background-color: #f6f8fa;
    border-right: 0;
}
.form-control {
    border-left: 0;
}
.form-control:focus {
    border-color: #048ABF;
    box-shadow: 0 0 0 0.2rem rgba(4,138,191,0.25);
}
.btn-login {
    background-color: #048ABF;
    border-color: #048ABF;
    transition: 0.3s ease;
}
.btn-login:hover {
    background-color: #036c99;
    border-color: #036c99;
}
.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}
.footer-text a {
    color: #048ABF;
    text-decoration: none;
    font-weight: 500;
}
.footer-text a:hover {
    text-decoration: underline;
}

