/*  import google fonts */

:root {
    --primary: #001327;
    --blue-gradient: #011a34;
    --purple-gradient: #220b42;
    --warning: #ffa500;
    --danger: #dc3545;
    --white: #FFF;
    --dark: #161718;
}


/* all similar content styling codes */

.max-width {
    max-width: 1300px;
    padding: 0 20px;
    margin: auto;
}

section {
    padding: 100px 0;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: var(--warning);
    padding: 0 5px;
    transform: translateX(-50%);
}

.title-header {
    margin: 50px 0;
    text-align: center;
}

.title-header h1 {
    font-size: 48px;
}

.title-header h1 span {
    color: var(--warning);
}

section.login .login-form {
    text-align: center;
    display: flex;
    justify-content: center;
}

section.login .login-form form {
    padding: 50px 25px;
    width: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 10px;
}

section.login .login-form form .fields {
    display: flex;
}

section.login .login-form form .field,
section.login .login-form form .fields .field {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

section.login .login-form form label {
    justify-content: flex-start;
    display: flex;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
}

.login .login-form form .textarea {
    height: 80px;
    width: 100%;
}

section.login .login-form form .name {
    margin-right: 10px;
}

section.login .login-form form .field input {
    height: 100%;
    width: 100%;
    border: 1px solid var(--primary);
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

section.login .login-form form.field input:focus {
    border-color: var(--warning);
}

section.login .login-form form .button-area {
    display: flex;
    align-items: center;
}

section.login .login-form form .button-area button {
    color: #fff;
    display: block;
    width: 100%;
    height: 40px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: nowrap;
    background: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    margin: 15px 0;
}

section.login .login-form form .button-area button:hover {
    background: var(--blue-gradient);
    border: 2px solid var(--blue-gradient);
}

section.login .login-form form .field.password {
    position: relative;
}

section.login .login-form form .field.password input {
    padding-right: 40px;
    /* Add padding to the right for the icon */
}

section.login .login-form form .field.password i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: var(--primary);
}

section.login .login-form form hr {
    opacity: 50%;
    margin-top: 35px;
    margin-bottom: 50px;
}

section.login .login-form form .button-social button {
    padding: 7px 0;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    background: var(--blue-gradient);
    color: var(--white);
    border: 2px solid var(--blue-gradient);
    display: flex;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

section.login .login-form form .button-social button span {
    margin: auto 10px;
}

section.login .login-form form .button-social button:hover {
    background: none;
    color: var(--blue-gradient);
    transition: 0.3s ease-in-out;
}

section.login .login-form form .button-social button img {
    width: 22px;
}

section.login .login-form form .button-social span a {
    color: var(--warning);
    font-weight: 600;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
    text-decoration: none;
}

section.login .login-form form .button-social span a:hover {
    background-size: 100% 1px;
}

@media screen and (max-width: 767px) {
    .title-header {
        margin: 25px 0;
        text-align: center;
    }

    section.login .login-form form {
        padding: 25px;
        width: 100%;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        border-radius: 10px;
    }

}

@media screen and (min-width: 767px) and (max-width: 1023px) {}

@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {}