body {
    margin: 0;
    height: 80vh;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    background-color:#29537F;
}
.main {
    width: 500px;
    height: 580px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    padding: 40px;
    box-sizing: border-box;
}
.main h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2a5298;
}
.main label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}
.main textarea {
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: none;
}
.main input:focus {
    border-color: #2a5298;
    box-shadow: 0 0 5px rgba(42, 82, 152, 0.4);
}
.button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #29537F;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    qtransition: background 0.3s;			    

}
.big-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.small-input {
    width: 30%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
a:link {
    outline:none;
}
a:visited {
    outline:none;
}
a:hover {
    outline:none;
}
a:active {
    outline:none;
}
:focus {
  -moz-outline-style:none;
}
a {
    color: #3695E2;
}
a:hover {
    text-decoration: none;
}
