﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}


:root {
    --orange: #FF914D;
    --green-leaf: #008037;
    --green-light: #7ED957
}

html, body {
    display: grid;
    height: 100vh;
    place-items: center;
    background: var(--orange);
}

.main_div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 90rem;
    background: #fff;
    padding: 30px;
    gap: 10rem;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.name-input {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.main_div .title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.main_div .social_icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.social_icons a {
    display: block;
    height: 45px;
    max-width: 100%;
    line-height: 45px;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s linear;
}

    .social_icons a span {
        margin-left: 5px;
        font-size: 18px;
    }

    .social_icons a:first-child {
        margin-right: 5px;
        background: #4267B2;
    }

        .social_icons a:first-child:hover {
            background: #375695;
        }

    .social_icons a:last-child {
        margin-left: 5px;
        background: #1DA1F2;
    }

        .social_icons a:last-child:hover {
            background: #0d8bd9;
        }

form {
    margin-top: 25px;
}

    form .input_box {
        height: 50px;
        max-width: 100%;
        position: relative;
        margin-top: 15px;
    }

.input_box input {
    height: 100%;
    width: 100%;
    outline: none;
    border: 1px solid lightgrey;
    border-radius: 9px;
    padding-left: 45px;
    font-size: 17px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s ease;
}

    .input_box input:focus {
        border-color: #068fff;
    }

.input_box .icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: grey;
}

form .option_div {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.option_div .check_box {
    display: flex;
    align-items: center;
}

.option_div span {
    margin-left: 5px;
    font-size: 16px;
    color: #333;
}

.option_div .forget_div a {
    font-size: 16px;
    color: #068fff;
}

#flexCheckChecked {
    accent-color: var(--green-light);
}

.button input {
    padding-left: 0;
    background: var(--orange);
    color: #fff;
    border: none;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s linear;
}

    .button input:hover {
        background: var(--green-light);
    }

form .sign_up {
    text-align: center;
    margin-top: 25px;
}

.sign_up a {
    color: #068fff;
}

form a {
    text-decoration: none;
}

    form a:hover {
        text-decoration: underline;
    }


.logo-box {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.forgot-password {
    font-size: 1.3rem;
    color: #068fff;
}

.text-danger {
    font-size: 1.6rem;
}


.account {
    margin: 3rem 0;
}

.account-inner p {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}



.account-inner a {
    color: #068fff;
    font-size: 1.3rem;
    text-decoration: underline;
}

.heading h3 {
    font-size: 1.8rem;
    color: #555;
}

.welcome {
    text-align: center;
    font-size: 2.1rem;
    /*font-weight: 500;*/
    /*margin: 3rem 0;*/
    font-weight: 600;
}



.svg-box {
    display: flex;
    justify-content: center;
}

.login-svg {
    margin-top: 2rem;
    width: 40%;
    height: 40%;
}

.validation {
    padding: 1rem;
    color: red;
    font-size: 1.2rem;
}
