body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('/gomobile_monitoring/static/img/landing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #007BFF;
}

.btn {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.btn:hover {
    background: #0056b3;
}

.login-container p {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.login-container p a {
    color: #007BFF;
    text-decoration: none;
}

.login-container p a:hover {
    text-decoration: underline;
}

/* Logo styles */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;  /* Space between logos */
}

.logo {
    max-height: 80px;  /* Adjust height as needed */
    width: auto;
    object-fit: contain;
}

.jcc-logo {
    max-width: 120px;  /* Adjust specific size for JCC logo */
}

.jas-logo {
    max-width: 100px;  /* Adjust specific size for other logo */
}

/* Responsive adjustments for logos */
@media (max-width: 600px) {
    .login-container {
        width: 90%;
        padding: 20px;
    }

    .btn {
        font-size: 14px;
    }

    .logo {
        max-height: 60px;  /* Smaller logos on mobile */
    }
    
    .jcc-logo {
        max-width: 100px;
    }
    
    .other-logo {
        max-width: 80px;
    }
}

.powered-by {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 0.9em;
}

.alert-danger {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.9em;
} 