/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 07 13, 20, 8:49:58 PM
    Author     : Primark
*/

.mainHolder{
    padding: 20px;
    margin-top: 50px;
    width: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid;
    box-shadow: 5px 10px #888888;
}
.imageHolder{
    display: flex;
    width: 500px;
    justify-content: center;
}
.holder{
    display: grid;
    grid-template-columns: 400px 100px;
    grid-template-rows: auto;    
}
.holder a, input{
    margin: 5px;
}

.holder2{
    display: grid;
    grid-template-columns: 500px;
    grid-template-rows: 20px 35px 20px 35px 20px 35px 20px 35px 20px 35px 20px 100px;
}
.holder2 a, textarea{
    margin: 5px;
}
.holder3{
    display: flex;
    width: 500px;
    justify-content: flex-end;
    
}
.holder3 button{
    background: red;
    color: white;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: large;
}
.holder3 button:hover{
    background: #ff3366;    
}
.holder3 button{
    margin: 5px;
}

@media screen and (max-width: 450px){

    .mainHolder{
        width: 300px;        
    }
    .imageHolder{
        display: flex;
        width: 300px;
        justify-content: center;
    }
    .holder{
        display: grid;
        grid-template-columns: 200px 100px;
        grid-template-rows: auto;    
    }
    .holder a, input{
        font-size: small;
        margin: 5px;
    }

    .holder2{
        display: grid;
        grid-template-columns: 300px;
        grid-template-rows: 20px 35px 20px 90px 20px 90px;
    }
    .holder2 a, textarea{
        margin: 5px;
    }
    .holder3{
        display: flex;
        width: 300px;
        justify-content: flex-end;
    }    

}