@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
    box-sizing: border-box;
}

.wrapper {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    margin: 82px 50px;
}

h1 {
    /*font-weight: bold;*/
    /*margin: 0;*/
}

h2 {
    text-align: center;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

label,a,p {
    font-size: 18px;
}
span {
    font-size: 12px;
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

button {
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #FF4B2B;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

button:active {
    transform: scale(0.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-top: 10%;
    flex-direction: column;
    padding: 0 50px;
    text-align: center;
}

#Product>form{
    margin-top: 3%;
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.container {
    max-width: 882px !important;
}

div.container.right-panel-active {
    /*background-color: #fff;*/
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    /*width: 900px;*/
    max-width: 100%;
    height: clamp(510px, 42.25rem, 780px);
    width: clamp(880px, 70%, 1780px);
    padding: 0;
}

.sign-in-heading {
    font-size: 1.7em;
}

img.d-block {
    height: 100%;
    width: 100%;
}


@media screen and (min-width: 1300px) {
    body {
        margin: 0 50px;
    }
}

@media screen and (min-width: 1600px) {
    body {
        margin: 0 50px;
    }
}

@media screen and (max-device-width: 768px) {
    body {
        margin: 0 50px;
    }

    #toast-container {
        margin-top: 23em;
    }
}

.carousel-container {
    width: 50%;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #555555;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-radius: 50%;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #7469eb;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

/* Default styling for larger screens */
.toggle-password {
    position: absolute;
    right: 10px;
    top: 64%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    font-size: 1.25rem; /* Default size for larger screens */
}

.toggle-password:hover {
    color: #7469eb;
}

.form-group {
    position: relative;
}

.form-control{
    margin-top: 0;
}

label{
    margin-bottom: 0;
}

/* Medium screens (tablets, 768px and up) */
@media (max-width: 992px) {
    .field-icon {
        font-size: 1.15rem; /* Slightly smaller icon */
        right: 8px; /* Adjust positioning */
    }
}

/* Small screens (phones, 576px and up) */
@media (max-width: 768px) {
    .field-icon {
        font-size: 1rem; /* Smaller icon */
        right: 8px; /* Adjust positioning */
    }

    .form-control {
        padding-right: 2rem; /* Adjust padding */
    }
}

/* Extra small screens (phones, less than 576px) */
@media (max-width: 576px) {
    .field-icon {
        font-size: 0.9rem; /* Even smaller icon */
        right: 6px; /* Adjust positioning */
    }

    .form-control {
        padding-right: 1.75rem; /* Adjust padding */
    }
}


.sign-btn {
    background-color: #7469eb;
    border: none;
}

.sign-btn:hover {
    background-color: #473af8;
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sign-up-container {
    /*transform: translateX(100%);*/
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%, 49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%, 100% {
        opacity: 1;
        z-index: 5;
    }
}

.social-container {
    margin: 20px 0;
}
