/*
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
*/

.holder{
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-top: 14%;
    margin-left: auto;
    margin-right: auto;
}
input[type="text"], input[type="password"], select, input[type="email"]{
    margin-left: 10px;
    margin-right: 10px;
    width: 260px;
    height: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.imageHolder{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.inputHolder{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-style: solid;
    border-radius: 10px;
    border-color: #cccccc;
    border-width: thin;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.errorHolder{
    margin-top: 10px;
    width: 100%;
}
button{
    width: 150px;
    height: 40px;
    margin-top: 10px;
    background-color: #ff3333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: large;
}
button:hover{
	opacity: 0.8;
}
label{
    width: 100%;
    text-align: left;
    font-weight: normal;
    font-size: medium;
}
a{
    margin-bottom: 10px;
}

@media screen and (max-width: 1200px){
    input[type="text"], input[type="password"], select, input[type="email"]{
        font-size: 1em;
        padding: 0.2em;
        width: 90%;
    }
    .holder{
        min-width: 400px;
    }
}

@media screen and (max-width: 450px){
    input[type="text"], input[type="password"], select, input[type="email"]{
        font-size: 1em;
        padding: 0.2em;
        width: 90%;
    }
    .holder{
        min-width: 90%;
    }
}