body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #01032B;
    color: #fff;
}

.login-container {
    background-color: #1D1F49;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 400px;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.login-container h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.login-container h6 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 0.7rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #44537C;
    border-radius: 4px;
    font-size: 16px;
    background-color: #1D1F49;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #fff;
    background-color: #fff;
    color: #000;
}

.form-group input[type="submit"] {
    background-color: #01032B;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.form-group input[type="submit"]:hover {
    background-color: #000114;
}

@media (max-width: 600px) {
    .login-container {
        width: 90%;
    }
}
