* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 20px 0px;
    height: 100vh;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 900px;
}

.left-side {
    /*flex: 1;*/
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px 30px;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    position: relative;
}

.left-side h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.p{
    font-size: 1.1em;
    margin-bottom: 20px;
}

.ft-bt{
    text-align: center;
    font-size: 10pt !important;
    bottom: 20px;
    position: absolute;
}

.animation {
    width: 100%;
    height: 150px;
    background: url('https://cdn.dribbble.com/users/730703/screenshots/4565799/media/471a8a4b3d7db30f79a3aef90fd6f408.gif') no-repeat center;
    background-size: contain;
}

.right-side {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

form {
    width: 100%;
}

form h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
}

button {
    width: 100%;
    padding: 8px;
    background-color: #4facfe;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: #00c6ff;
}

.error-message {
    color: #ff3535;
    font-size: 11pt;
    background-color: #ffe2e2;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0px;
    border: 1px solid #e3b1b1;
    margin: 10px 0px;
}

.success-message {
    color: #389344;
    font-size: 11pt;
    background-color: #e2ffe7;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0px;
    border: 1px solid #c0e3b1;
    margin: 10px 0px;
}

.img-login{
    height: 100px;
}

.a-link{
    color: #444;
    font-size: 10pt;
    text-decoration: none;
    text-decoration-style: none;
    list-style: none;
    list-style-type: none;
}


/* Responsive */
@media (max-width: 768px) {
    .login-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .left-side, .right-side {
        padding: 30px 20px;
    }

    .left-side{
        display: none;
    }

    .animation {
        height: 100px;
    }
}
