body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.docker-logo {
    width: 80px;
    height: 80px;
    background-color: #4a86e8;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.login-form-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

h1 {
    font-weight: 600;
    color: #212529;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.input-group-text {
    background-color: transparent;
}

.btn-primary {
    background-color: #4a86e8;
    border-color: #4a86e8;
    padding: 10px;
}

.btn-primary:hover {
    background-color: #3a76d8;
    border-color: #3a76d8;
}

.credentials-text {
    color: #4a86e8;
    font-weight: 500;
}

/* Bootstrap icon sizing */
.bi {
    font-size: 1.1rem;
}

label.form-label {
    font-weight: 500;
    margin-bottom: 0.25rem;
}