* {
    padding: 0;
    margin: 0;
    font-size: 16px;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    color: #1C133D;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}


.container {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
    /* align-items: center; */
    height: 100vh;
}

.logo {
    width: 200px;
}

.form-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-header p {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.title {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-control {
    margin-bottom: 10px;
}

.form-control .icon {
    z-index: 9;
    top: 4px;
    left: 2px;
    position: absolute;
    color: #ccc;
    padding: 13px;
    border-radius: 2px;
    /* background: #fff; */
}

.input-field {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
}

input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.errorlist li {
    color: red;
    font-size: 14px;
    list-style: none;
}

.submit-btn {
    width: 100%;
    border: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;
    background-color: #1C133D;
}


.submit-btn:hover {
    background-color: #AC961A;
}


.left-panel {
    background-image: url(../images/back-2.gif);
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
    overflow: hidden;
    display: none;
    padding: 30px;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay color */
    z-index: 1;
    /* Ensures the overlay is above the background image */
}

.left-panel>* {
    position: relative;
    z-index: 2;
    /* Ensures content is above the overlay */
}

.left-panel .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-header .help-link {
    background: #ccc;
    padding: 8px;
    border-radius: 10px;
    margin-left: 5px;
}

.panel-header span {
    color: white;
}

.left-panel .content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
    color: wheat;
    flex-direction: column;
}

.left-panel h4 {
    color: white;
    background-color: #AC961A;
    border-radius: 40px;
    padding: 10px;
    margin-bottom: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}

.left-panel p {
    color: wheat;
}

.left-panel p,
.left-panel strong {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 20px;
}

.left-panel p strong {
    color: white;
}

.left-panel .socials {
    width: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-panel .icon {
    color: white;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
}

.left-panel .icon:hover {
    color: #c9bfb2;
}


/* Initial state of elements with the common class */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    /* Start 20px below their final position */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Class to be added when the page is loaded */
.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay the second element (socials) */
.fade-in-up.animate:nth-child(2) {
    transition-delay: 0.5s;
}

/* Delay the second element (socials) */
.fade-in-up.animate:nth-child(3) {
    transition-delay: 0.8s;
}

.fade-in-up.delay.animate {
    transition-delay: 0.5s;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up.animate {
    animation: fadeInUp 1s ease-out forwards;
}

/* Add a delay to the .socials animation */
.fade-in-up.delay.animate {
    animation-delay: 0.5s;
}


@media screen and (min-width: 768px) {

    .form-container {
        padding: 80px;
    }

}


@media screen and (min-width: 1024px) {
    .container {
        grid-template-columns: 1fr 1.4fr;
    }

    .left-panel {
        display: block;
    }

}
