
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;800&display=swap');
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
}


.main-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.main-cont {
    background: #ffffff;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  
}

.desc-header {
    width: 100%;
    height: auto;
    text-align: center;  
}

.desc-header img {
    width: 200%;
}

.desc-header p {
    font-size: 2em;
    color: #FFC005;
}

.cont-header {
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: 'Manrope', sans-serif;
}

.cont-header h1 {
    color: #e0ce5e;
}

.cont-header form {
    width: 350px;
    height: auto;
    border: 3px solid #c38f1d;
    padding: 1em;
    margin: 2em;
    border-radius: 1em;
}

.cont-header form label {
    display: block;
    padding: 10px;
}

input {
    width: 100%;
    text-align: center;
}

button {
    display: block;
    width: 100%;
       color: #ffffff !important;
    margin-top: 15px;
    padding: .7em;
    border: none;
    border-radius: 8px;
    background: #d3b645;
 
    cursor: pointer;
}

.alert {
    color: red;
}