    div.form{
        text-align: center;
        justify-items: left;
        background-color: whitesmoke;
        margin-top: 20px;
        display: flexbox;
        flex:1;
        overflow-x: auto;
    }

    div.container{
        flex: 1;
        padding: 5px;
        justify-items: center;
        width: 100%;
        height: 100%;
    }
    

	div.head_rediris{

    	background: #298f9b;
    	height: 70px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
	}

	div.footer_rediris{

    	background: #298f9b;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        text-align: end;
        margin-top: 30px;
        display: flex; 
        flex-direction: column;

	}

    div.info{
        background-color: whitesmoke;
        text-align: left;
        padding: 30px;
        margin-top: 20px;
        margin-bottom: 30px;

    }

    div.error{
        background-color: whitesmoke;
        text-align: center;
        color: red;
        padding: 10px;
        margin-bottom: 30px;
        display: none;
    }

    div.result{
        text-align:left;
        justify-items: left;
        font-family: monospace;
        margin: 50px;
        flex:1;
    }

    .flex-container{
        flex-direction: column;
    }

    .radio-item {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        width: 150px;
    }

    .radio-item input[type="radio"]{
        align-self: center;
    }

    .modal {
    background: transparent; 
    padding: 0; 
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .modal img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px; 
    }

    .modal button {
    margin-top: 10px;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    }


