@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,500;0,600;0,700;1,100;1,200&family=Lora:wght@400;500;600;700&family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100&display=swap');

* {
    font-family: 'Urbanist', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
}

.main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url("../images/Background.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem;
}

.side-image {
    flex: 1 1 300px;
    background: #F99D1C;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.side-image .login-image {
    width: 80%;
    max-width: 400px;
    height: auto;
    position: static;
}

.input-box {
    flex: 1 1 400px;
    max-width: 500px;
    margin: 2rem;
}

.welcome-orange,
.welcome-black {
    font-size: 24px;
    font-weight: 700;
}

.welcome-orange {
    color: #F2920C;
}

.welcome-black {
    color: #000;
}

.label {
    font-size: 16px;
    font-weight: 600;
}

.input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 25px;
}

.input {
    height: 45px;
    width: 100%;
    background: #F9F9F9;
    border-radius: 4px;
    border: 2px solid #F9F9F9;
    color: #313130;
    padding: 0 10px;
    outline: none;
}

.input:focus {
    border: 0.5px solid #F2920C!important;
}

.input-box .input-field label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: 0.5s;
}

.submit {
    border: none;
    outline: none;
    height: 55px;
    width: 100%;
    background: #F39200;
    border-radius: 4px;
    transition: 0.4s;
    font-size: 14px;
    text-align: center;
    color: white;
}

.submit:hover {
    background: #F39200;
    color: #FFFFFF;
}

.submit:active {
    background-color: #F39200 !important;
    color: white;
}

.signin a {
    text-decoration: none;
    color: #B0B0B0 !important;
    font-size: 12px;
    font-weight: 600;
}
.signin {
    margin-top: -25px;
    text-align: right;
}

span a {
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: 0.5s;
}

span a:hover {
    text-decoration: underline;
    color: #FF8A00;
}

/* Responsive */
@media (max-width: 768px) {
    .main{
        display:block;
        background-image: url("../images/Background-mobile.png");;
        background-color:#f99d1c ;
        background-size: initial;
        background-position: center;
        padding: auto; 
        background-position-y:  30%;   
    }

    .welcome-orange {
        color: #fff;
    }

    .input-box {
        margin: 5px;
        width: 100%;
    }
}
