@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: white;
        font-family: 'Gotham', sans-serif;
}
.input-register {
    width: 100%;
    padding: 1rem 3rem 1rem 2rem;
    color: #5e5e5e;
    background: #f8f8f8;
    border: 3px solid #f8f8f8;
    border-radius: 6rem;
    transition: border-color .2s;
}

.input-register:focus {
    border-color: #dbdbdb;
}

.input-register:hover {
    border-color: #e9e9e9;
}

.button-register {
    cursor: pointer;
    position: relative;
    box-sizing: initial;
    padding: 0.8rem 2rem 0.8rem;
    color: #fff;
    line-height: 2.8rem;
    background: #710097;
    border: 0;
    border-radius: 6rem;

}
.button-register:hover{
    background: #a730dc;
    color: #fff;
}

.red-cone {
    color: red;
}
.error_msg {
    color: white;
    background-color: rgb(215, 15, 15);
    padding: 3px;
    font-weight: bold;
    border-radius: 3px;
}
.odoo-warning {
    border: 1px solid black;
    border-radius: 1rem;
    padding: 6px;
}
