/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/
body {
    font-family: 'Arial', sans-serif;
    /*background-color: #f5f5f5;*/
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
}

.illustration {
    flex: 1;
    text-align: center;
}

    .illustration img {
        max-width: 100%;
        height: auto;
    }

.login-form {
    flex: 1;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .login-form h2 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
        text-align: center;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        color: #666;
        margin-bottom: 5px;
    }

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

    .form-control:focus {
        outline: none;
        border-color: #6c63ff;
        box-shadow: 0 0 5px rgba(108, 99, 255, 0.3);
    }

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #6c63ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-login:hover {
        background-color: #5a52cc;
    }

.forgot-password {
    text-align: right;
    margin-top: 10px;
}

    .forgot-password a {
        font-size: 14px;
        color: #6c63ff;
        text-decoration: none;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.terms {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

    .terms a {
        color: #6c63ff;
        text-decoration: none;
    }

        .terms a:hover {
            text-decoration: underline;
        }

.text-danger {
    color: #dc3545;
    font-size: 12px;
}