* {
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: orange;
}

#form_new {
    width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    margin: 40px auto;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    background-color: white;


    div {
        display: flex;
        flex-direction: column;
        width: 250px;
        height: max-content;

        input {
            padding: 5px;
            border: none;
            border-bottom: 1px solid black;
            outline: none;
            transition: .2s;
        }

        input:focus {
            padding: 10px;
            border: none;
            border-bottom: 1px solid black;
            outline: none;
        }

        p{
            margin-bottom: 10px;
        }

        #radios_btn {
            flex-wrap: wrap;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 10px;

            div {
                flex-direction: row;
                width: max-content;
                gap: 5px;
            }
        }
   
    }

    #btnenviar{
        padding: 8px 20px;
        border: none;
        background-color: black;
        color: white;
        border-radius: 5px;
        cursor: pointer;
        transition: .2s;
    }

    #btnenviar:hover{
        padding: 10px 22px;
        border: none;
        background-color: black;
        color: white;
        border-radius: 5px;
        cursor: pointer;
    }

    #btnlimpar{
        padding: 8px 20px;
        border: none;
        background-color: red;
        color: white;
        border-radius: 5px;
        cursor: pointer;
        transition: .2s;
    }

    #btnlimpar:hover{
        padding: 10px 22px;
        border: none;
        background-color: red;
        color: white;
        border-radius: 5px;
        cursor: pointer;
    }    
}

#video {
    width: 100%;

    #video-screen {
        width: 100%;
    }
}