@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

html, body {
    background: linear-gradient(135deg, #6866ee, #7460e9);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

::selection {
    color: #fff;
    background: #6665ee;
}

.container {
    margin: 5% auto;
    max-width: 800px;
    padding: 2%;
}

section {
    margin-bottom: 15px;  /* Increase this value for more margin */
}

@keyframes bounceIn {
    0% { transform: translate(-50%, -60%); opacity: 0; }
    70% { transform: translate(-50%, -52%); }
    100% { transform: translate(-50%, -50%); opacity: 1; }
}

.container .form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px 35px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.container .form form .form-control {
    height: 40px;
    font-size: 15px;
}

.container .form form .forget-pass {
    margin: -15px 0 15px 0;
}

.container .form form .forget-pass a {
    font-size: 15px;
}

.container .form form .button {
    background: #6665ee;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.container .form form .button:hover {
    background: #5757d1;
}

.container .form form .link {
    padding: 5px 0;
}

.container .form form .link a {
    color: #6665ee;
}

.container .login-form form p {
    font-size: 14px;
}

.container .row .alert {
    font-size: 14px;
}
.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container img {
    /* Additional styles for the image if needed */
}

