/*ESTILIZAÇÃO DOS FORMULÁRIOS HELPDESK DA OCTA*/

.form-desk {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    max-height: 85vh;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
}

.form-header {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.img-logo-container{
	position: absolute; 
	left: 50%; 
	transform: translateX(-50%);
}

.img-logo{
	width: 90px;
	object-fit: contain;
}

.iframe-desk {
    width: 100%;
    height: 600px;
    border: none;
    min-height: 500px;
}


