﻿body {
}


.create-btn {
    width: 100% !important;
    background-color: rgba(248, 87, 87, 1) !important;
    color: white !important;
    padding: 14px 20px !important;
    margin: 22px 0 12px 0 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15) !important;
}

@font-face {
    font-family: "Plus Jakarta Sans light";
    src: url("../fonts/PlusJakartaSans-Light.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Plus Jakarta Sans Bold";
    src: url("../fonts/PlusJakartaSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}



@media screen and (min-width:1000px) {
    .login-width {
        max-width: 1150px !important;
    }
}

.login-para {
    font-family: 'Plus Jakarta Sans light';
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    color: black;
    margin-bottom: 0;
}

form {
    font-family: 'Plus Jakarta Sans light' !important;
}

.login-links {
    color: #F85757;
    text-decoration: none;
}
    .login-links:hover {
        text-decoration: none;
        color: #F85757; /* Remove underline on hover */
    }



.section {
    margin-top: .5rem;
    background: linear-gradient(175deg, #fff 77%, #F85757 60%);
}

@media screen and (max-width:992px) {
    .section {
        margin-top: 3rem;
    }
}

@media screen and (max-width:992px) {
    .no-image {
        display: none !important;
    }
}

@media screen and (max-width:992px) {
    .login-card-col {
        padding-right: 15px !important;
        padding-left: 15px !important;
        display: flex;
        justify-content: center;
    }

    .section {
        background: linear-gradient(175deg, #fff 45%, #F85757 44.5%);
    }
}

label {
    font-family: 'Plus Jakarta Sans Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
}

.radio-label {
    font-family: 'Plus Jakarta Sans light';
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(26, 32, 44, 1);
}

.login-card {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 12px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    padding: 40px 35px 15px 35px;
}

@media screen and (max-width:400px) {
    .login-card {
        padding: 50px 15px 0 15px;
    }
}

/*whole form styling*/
input[type=text], input[type=password] {
    width: 98%;
    padding: 15px;
    margin: 5px 5px 5px 5px;
    display: inline-block;
    border: none;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26, 32, 44, 0.1);
   /* color: rgba(26, 32, 44, 0.36);*/
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
}

select {
    height: 52px;
    padding: 10.05px;
    margin: 5px 0 5px 0;
    display: inline-block;
    border: none;
    background: #fff;
    border-radius: 12px 0 0 12px;
    border: 1px solid rgba(26, 32, 44, 0.1);
    color: black;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
}

input[type=phone] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 5px 0;
    display: inline-block;
    border: none;
    background: #fff;
    border-radius: 0 12px 12px 0;
    border: 1px solid rgba(26, 32, 44, 0.1);
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
}

input, select, textarea {
    max-width: unset;
}

:focus-visible {
    outline: rgba(248, 87, 87, 1)auto 1px;
}

/*whole form styling*/

label {
    cursor: pointer;
}

#accent {
    accent-color: rgba(248, 87, 87, 1);
    outline: solid rgba(248, 87, 87, 1)auto 1px;
}



/*radio checkbox*/


input[type="radio"], input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
    background-color: #fff;
    box-shadow: 5px 5px 20px 0 rgba(248, 87, 87, 0.25);
    border: 1px solid rgba(248, 87, 87, 1);
}

/* The container */
.check-container {
    display: block;
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .check-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 2px;
    left: 1px;
    height: 15px;
    width: 15px;
    background-color: #fff;
    box-shadow: 5px 5px 20px 0 rgba(248, 87, 87, 0.25);
    border: 1px solid rgba(248, 87, 87, 1);
}


/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
    background-color: rgba(248, 87, 87, 1);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
    left: 4px;
    top: 2px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*radio checkbox*/


