body {
    background: linear-gradient(90deg, #1d4e8f, #4289e7);
    color: white;
    font-family: 'Arial', sans-serif;
    height: 100vh;
}

#fixedLogo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 230px;
    opacity: 0.7;
    z-index: 1000;
    transition: opacity 0.3s;
}

#fixedLogo:hover {
    opacity: 1;
}

.login-container {
    margin-top: 10%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.form-control {
    background: transparent;
    color: white;
}

.form-control:focus {
    box-shadow: none;
    border-color: #381dd3;
}

.btn-primary {
    background-color: #381dd3;
    border: none;
}

.btn-primary:hover {
    background-color: #2575fc;
}

.login100-form-logo {
    font-size: 60px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #050101;
    margin: 0 auto 30px;
}

.forgot-link {
    color: #000;
}

.forgot-link:hover {
    color: #f7f8fa;
}
