*, ::before, ::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: url(../img/se.png);
    background-size: cover;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Ubuntu, Cantarell,
        "Helvetica Neue", Arial, sans-serif;
    transition-property: opacity, filter;
    transition-duration: 0.4s;
}

form {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 2px solid #909192;
    padding: 20px 30px;
    gap: 15px;
    =: 400px;
    =: 100%;
    =: 300px;
    justify-content: center;
    font-size: 1.25rem;
    flex: 1;
}
    
div {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    justify-content: space-evenly;
    margin-top: 15px;
}

label {
    color: white;
    padding: 0 10px;
}

input {
    border-radius: 20px;
    background: #c1c1c1ab;
    outline:none;
    border: 2px solid #909192;
    font-size: inherit;
    color: white;
    text-shadow: 2px 2px 2px #444444;
    letter-spacing: 2px;
    padding: 10px;
    =: 500px;
    width: 100%;
    min-width: 0;
}

button {
    padding: 5px 20px;
    color: white;
    background: none;
    border: 2px solid #909192;
    border-radius: 24px;
    font-size: inherit;
    transition: color 0.15s ease;
    cursor: pointer;

    &:hover {
        color:#426ed7;
    }
}

a {
    cursor: pointer;
    color: white;
    transition: color 0.15s ease;

    &:hover {
        color:#426ed7;
    }
}

p {
    letter-spacing: 7px;
    margin: 0;
}

.name {
    font-size: 2rem;
}

cont {
    color:#426ed7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

conte {
    background: #0000009e;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    padding: 20px;
    gap: 10px;
    flex-direction: row;
    width: 100%;
    max-width: 900px;
}

img {
    transition: transform 2s;
    max-width: 350px;
}

@media(max-width: 767px) {
    conte {
        flex-direction: column;
        padding: 10px;
    }

    form {
        padding: 10px;
        min-width: 250px;
    }

    img {
        min-width: 250px;
        width: 100%;
    }
}