﻿.text-danger {
    color: #dc3545; /* Bootstrap's default red color */
    font-weight: bold; /* Makes the text bold */
}

.body {
    background-color: #0C0C0C;
    max-height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar {
    width: 0; /* Hide scrollbar for Chrome, Safari, and Opera */
}

body {
    -ms-overflow-style: none; /* Hide scrollbar for IE 10+ */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}


.form {
    display: flex;
    flex-direction: column;
    justify-self: center;
    gap: 10px;
    margin-top: -10vh;
    background-color: transparent;
    padding: 30px;
    width: 50vw;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
    align-self: flex-end;
}

.flex-column > label {
    color: #151717;
    font-weight: 600;
}

.inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
}

    .input:focus {
        outline: none;
    }

.inputForm:focus-within {
    border: 1.5px solid #2d79f3;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

    .flex-row > div > label {
        font-size: 14px;
        color: black;
        font-weight: 400;
    }

.span {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
}

.button-submit {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

    .btn:hover {
        border: 1px solid #2d79f3;
        ;
    }
/**************************************************************************************************************************/

/* From Uiverse.io by FahadArnob52539 */
.login {
    width: 50vw;
    background-color: #ffffff;
    border-radius: 5px;
    display: none;
}

.hader {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

    .hader p {
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        color: #706b6b;
    }

.formSignUp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

    .formSignUp input {
        height: 40px;
        outline: none;
        border: 1px solid #cccccc;
        padding: 10px;
        font-size: 15px;
        border-radius: 8px;
    }

        .formSignUp input[type="button"] {
            background-color: rgba(17, 17, 226, 0.562);
            color: #ffffff;
            font-size: 17px;
        }

    .formSignUp span {
        text-align: center;
        font-size: 16px;
        padding-top: 10px;
        color: #706b6b;
    }

        .formSignUp span a {
            text-decoration: none;
            color: rgba(36, 36, 207, 0.671);
            font-weight: 500;
        }
