﻿

.my-input-conteiner {
    /*background-color: antiquewhite;*/
    width: 100%;
    margin: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

    .my-input-conteiner:hover {
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }

.my-input-box {
    width: 100%;
}

.my-button {
    margin: 5px 5px 5px 5px;
    /*width: 160px;*/
}


/*.wrap {
    flex-wrap: wrap;
}

.my-flex-conteinet-space-between {
    display: flex;
    justify-content: space-between;
}
*/


.my-flex-conteinet-space-evenly {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.my-flex-conteinet-vertical {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.my-flex-conteinet-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.my-flex-conteinet-start {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.my-btn {
    min-width: 200px;
    margin: 5px;
}



.my-error-message {
    margin: 5px 0px 2px 0px;
    color: red;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-label {
    margin-bottom: 0.5rem;
}





.myloader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: myspin 2s linear infinite;
    position: absolute;
    top: 45%;
    left: 45%;
}

@keyframes myspin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
