/* Global Elements */
body {
    font-family: 'Main topics';
    justify-items: center;
    justify-content: center;
    height: auto;
    background-color: #d0ebed;
    padding-top: 50px;
}

/* Layout and Structure */
.container {
    width: 700px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    margin: 30px;
}

form {
    width: 50%;
    padding: 50px;
}

h1 {
    text-align: center;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.login-image {
    margin: 20px 20px;
}

.login-image img {
    width: 300px;
    height: auto;
}

.footer {
    height: 50px;
    text-align: center;
    font-size: 14px;
    background: #00656D;
    color: #bbbbbb;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Form Elements */
label {
    font-weight: bold;
    color: #AB9156;
}

.form-check-label {
    color: #666 !important;
}

.form-control {
    border-radius: 10px;
}

.form-control:focus {
    border-color: #00656D;
    box-shadow: 0px 0px 8px rgba(19, 91, 77, 0.3);
}

/* Specific Components */
.btn-primary {
    background-color: #00656D;
    border: none;
    box-shadow: none !important;
    font-weight: bold;
    border-radius: 5px;
}

.btn-primary:hover {
    background: #A5D6A7;
}

.btn-primary:active {
    background: #A5D6A7 !important;
}

/* Visual Elements */
.logo {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 100px;
    height: auto;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .container {
        width: 350px;
        height: 400px;
        padding: 10px;
    }

    h1 {
        font-size: 20px;
        text-align: center;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-control {
        width: 80px;
    }

    .login-image img {
        width: 150px;
        padding-top: 100px;
    }

    .footer {
        font-size: 10px;
    }
}