﻿@import 'Root.css';

body {
    /*margin: 0;
    padding: 0;
    background-color: #e0e0e0;
    font-family: 'Roboto', sans-serif;*/
}

body {
    background-image: url('../assets/sign up.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    transform: translateY(10%);
    height: auto;
    width: auto;
}

.logo {
    color: var(--primary-color);
    border-left: solid;
    display: flex;
    justify-content: center;
}

.maindiv {
    width: 380px;
    background: #fff;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
}

.title {
    border-left: solid;
    /*border-right: dashed;*/
    /*border-top: double;*/
    border-bottom: solid;
    padding-top: 20px;
    font-size: var(--font-h1);
    font-weight: var(--font-weight-semi-bold);
    text-align: center;
    /*line-height: 40px;*/
    color: var(--primary-color);
    user-select: none;
    border-radius: 0px 15px 0 90px;
    /*background: var(--button-color);*/
    /*background: linear-gradient(-135deg, #c850c0, #4158d0);*/
    /*text-transform: capitalize;*/
    letter-spacing: 1px;
}

    .title p {
        font-size: 15px;
    }

form {
    padding: 10px 50px 50px 25px;
}

.field {
    height: 50px;
    width: auto;
    margin-top: 40px;
    position: relative;
}

    .field input {
        height: 100%;
        width: 100%;
        outline: none;
        font-size: 17px;
        padding-left: 20px;
        border: 1px solid lightgrey;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .field input:focus,
        .field input:valid {
            border-color: #4158d0;

            /*border-color: #4158d0;*/
            box-shadow: 0px 10px 20px rgba(62, 123, 222, 0.1);
        }

        /* Additional CSS to style the active state */     /*ye mene address kia h*/
        /*.field input.active {
            border-color: #4158d0;
            box-shadow: 0px 10px 20px rgba(62, 123, 222, 0.1);
        }*/


    .field label {
        position: absolute;
        top: 50%;
        left: 20px;
        color: #999999;
        font-weight: 400;
        font-size: 17px;
        transform: translateY(-50%);
        transition: all 0.3s ease;
        pointer-events:none;
    }

    .field input:focus ~ label,
    .field input:valid ~ label {
        top: 0%;
        font-size: 16px;
        color: #4158d0;
        background: #fff;
        transform: translateY(-50%);
    }

.content {
    display: flex;
    width: 100%;
    height: 50px;
    font-size: 16px;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}

.checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content input {
    width: 15px;
    height: 15px;
}

.content label {
    color: #262626;
    user-select: none;
    padding-left: 5px;
}

.pass-link a {
    color: "";
}

.field input[type="submit"] {
    box-shadow: var(--button-hover-shadow);
    width: 108%;
    /*color: #fff;*/
    /*color: var(--primary-color);*/
    color: var(--primary-color);
    border: none;
    padding-left: 0;
    margin-top: -25px;
    font-size: 20px;
    font-weight: var(--font-weight-semi-bold);
    cursor: pointer;
    /*border-style:solid;*/
    border-left: solid;
    border-right: solid;
    border-top: solid;
    border-bottom: solid;
    /*border: double;*/
    /*background: var(--button-color);*/
    /*background: #F5F5F5;*/
    background: #F5F5F5;
    /*background: linear-gradient(-135deg, #c850c0, #4158d0);*/
    transition: all 0.3s ease;
}

    .field input[type="submit"]:active {
        transform: scale(0.95);
    }

.signup-link {
    color: #262626;
    margin-top: 10px;
    text-align: center;
}

    .signup-link a {
        color: #4158d0;
        text-decoration: none;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    .maindiv {

        width: 100%;
        background: #fff;
        /*border-radius: 15px;*/
        border-radius: 0 15px 15px 15px;
        box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
    }
}


/*.field-inline {
    display: flex;
    align-items: center;
}

select, input[type="tel"] {
    padding: 5px;
    font-size: 1em;
    width: auto; /* Adjusts width automatically */
/*}*/

#resendEmailOTP,
#timerEmail,
#resendMobileOTP,
#timerMobile {
    /*margin: 10px 0 0 0;*/
    position: absolute;
    transform: translate(5%, 30%);
}

.fieldLast{
    margin-top:70px;
}