/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    font-size: 62.5%;
}

body * {
    box-sizing: border-box;
}

@font-face {
    font-family: 'santral-bookuploaded_file';
    src: url('../../fonts/santral-book-webfont.woff2') format('woff2'), url('../../fonts/santral-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-size: 1.6rem;
    font-family: 'santral-bookuploaded_file';
}

.container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(140deg, rgba(44, 124, 170, 1) 50%, rgba(24, 51, 86, 1) 100%);
}

.form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    background-color: #fff;
    padding: 5rem;
    width: 45rem;
}

.container img {
    width: 200px;
    margin: 0 auto 5rem auto;
    display: block;
}

.ta-form-group {
    display: flex;
    flex-direction: column;
    row-gap: 0.8rem;
    margin-bottom: 1rem;
}

.ta-form-control {
    border: 1px solid #2c7caa;
    border-radius: 0.4rem;
    min-height: 4rem;
}

.ta-form-check-group {
    display: flex;
    column-gap: 0.7rem;
    padding: 1rem 0;
}

.container-submit {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.ta-btn {
    border: none;
    cursor: pointer;
    padding: 1.5rem 5rem;
    border-radius: 0.5rem;
    transition: all 0.1s ease-in;
}

.ta-btn-clair {
    background-color: #2c7caa;
    color: #fff;
}

.ta-btn-clair:hover,
.ta-btn-clair:focus {
    background-color: #183356;
}

.alert-message {
    margin-bottom: 2rem;
    color: green;
}

.alert-message.error {
    color: red;
}

@media screen and (max-width:500px) {
    .form-container {
        padding: 5rem 2rem;
        width: 90%;
    }
}