* {
    box-sizing: border-box;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: vertical; 
}

.label{
	border:1px solid #000;
	font-weight: bold;
	} 

.submit {
    background-color: #333333;
    color: #ffffff;
    padding: 16px 30px;
	font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	width: 100%;
}
.submit:hover {
    background-color: #000000;
}

.col-25, .col-100, input[type=submit] {
        width: 100%;
        margin-top: 5;
}

.container {
    border-radius: 5px;
    background-color: transparent;
    padding: 0px;
}

.col-20 {
    float: left;
    width: 20%;
    margin-top: 6px;
	font-weight: bold;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
	font-weight: bold;
}

.col-50 {
    float: left;
    width: 50%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

.col-90 {
    float: left;
    width: 90%;
    margin-top: 6px;
}

.col-100 {
    float: left;
    width: 100%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row {
    display: table;
	margin-left: auto;
	margin-right: auto;
}
.row:after {
    content: "";
    display: table;
    clear: both;
	margin-left: auto;
	margin-right: auto;
}
.row-baslik {
	font-size: 22px;
    padding: 0px;
    border: 0px solid #ccc;
    border-radius: 3px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

}