﻿
input[type=button], input[type=submit], input[type=reset] {
  border: 2px solid #000; /* replace #000 with your desired border color */
  border-radius: 8px; /* adjust value to change corner roundness */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* adjust values to change box shadow */
  padding: 2px 5px; /* adjust values to change button size */
  background-color: #a29bfe; /* replace #fff with your desired background color */
  color: #000; /* replace #000 with your desired text color */
  transition: 1s;
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  background-color: #a29bfe;
  border: 1px solid green;;
  color: white;
  padding: 6px 9px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}*/

input[type=file]::file-selector-button {
  border: 2px solid #6c5ce7;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #a29bfe;
  transition: 1s;
}

input[type=file]::file-selector-button:hover {
  background-color: #81ecec;
  border: 2px solid #00cec9;
}
input[type=text],input[type=password] {
    border: 1px solid green;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);	
    padding: 4px;
    background: rgba(255,255,255,0.5);
    margin: 0 0 1px 0;
}
a { 
text-decoration: none;
}
	/* unvisited link */
a:link {
  color: blue;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: red;
}

table.roundedCorners { 
  border: 2px solid DarkOrange;
  border-radius: 13px; 
  border-spacing: 0;
  }


table.roundedCorners td, 
table.roundedCorners th { 
  border-bottom: 1px solid DarkOrange;
  padding: 10px;
  text-align: left;
  }
table.roundedCorners tr:last-child > td {
  border-bottom: none;
}


.login-box{
    width:350px;
    padding:20px;
    background:#fff;
    border-radius:10px;
    background-image:url('image.png');
    background-size:cover;
    background-position:center;
}