:root {
    --color-primary: #368FCD;
    --color-primary-dark: #2E7BB3;
    --color-danger: #F95F53;
    --color-danger-dark: #E0544A;
    --color-danger-secondary: #C20000;
    --color-danger-secondary-dark: #C53000;
    --color-success: #57BD9C;
    --color-success-dark: #2CA880;
    --color-dark: #000;
    --color-dark-gray: #3C3D40;
    --color-light: #ecebea;
    --color-ligth-secondary: #c9c6c4;
}

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Graphit-Light';
    src: url('../fonts/Graphit/Graphit-Light.otf');
}

body {
    width: 100vw;
    height: 100vh;
    font-family: 'Graphit-Light';
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    overflow-x: hidden;
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    background-size: cover;
}

.container {
    background-color: rgba(255, 255, 255, 0.5);
    width: 95%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.content-main {
    width: 50%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-logo {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content-logo>img {
    width: 35%;
    height: auto;
    margin: 5px 0;
}

.content-form {
    width: 100%;
    height: 300px;
}

.forma {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background-color: #fff;
    margin-top: 30px;
}

.content-input {
    width: 80%;
    height: 35px;
    border: 2px solid #000;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin: 10px 0;
}

.content-input>img {
    width: 30px;
    height: 30px;
}

.content-input>i {
    font-size: 30px;
    font-weight: lighter;
    margin: 0 8px;
}

.content-input>input {
    width: 90%;
    height: 30px;
    color: #000;
    font-size: 20px;
    background-color: inherit;
    border: none;
    font-family: 'Graphit-Light';
}

.content-input>input:focus {
    outline: none;
}

.content-input>input:-webkit-autofill,
.content-input>input:-webkit-autofill:hover,
.content-input>input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

input[type="submit"],
button {
    width: 35%;
    color: var(--color-light);
    font-weight: lighter;
    padding: 13px 10px;
    margin: 10px 0;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    background-color: var(--color-dark-gray);
    font-family: 'Graphit-Light';
    font-size: 18px;
}

input[type="submit"]:hover,
button:hover {
    background-color: var(--color-dark-gray);
}



@media screen and (min-width: 320px) and (max-width: 760px) {
    .content-logo>img {
        width: 85%;
    }

    input[type="submit"],
    button {
        width: 85%;
    }

    .content-form {
        width: 150%;
    }
}
