* {
    font-family: Arial, sans-serif;
    font-size: 12px;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: url(../image/pl0.jpg) center center no-repeat;
    background-size: cover;
    color: #e0e0e0;
}

.wrapper {
    width: 600px;
    padding: 10px;
    display: inline-block;
}

.registrationContent {
    border: 2px solid #ecd19a;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 0 0 5px 5px;
}

.registrationTitle {
    padding: 10px;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(#ecd19a, #b79e6b);
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.attention {
    color: #ecd19a;
    font-weight: bold;
}

.registrationWrapper {
    display: inline-block;
    width: 550px;
    padding: 20px;
}

.registrationStep {
    font-weight: bold;
}

.registrationStep span {
    background: #ecd19a;
    padding: 10px 15px;
    color: #000;
    font-weight: bold;
    margin-right: 5px;
    display: inline-block;
    border-radius: 4px;
}

.registrationSpace {
    margin: 20px 0;
    border-bottom: 1px dashed #ecd19a;
}

.registrationForm {
    padding: 20px 40px;
}

.registrationForm td {
    padding: 10px 0;
}

.registrationForm label {
    display: block;
    padding: 10px 15px;
    background: #ecd19a;
    color: #000;
    font-weight: bold;
    border-radius: 3px;
}

.registrationForm input[type='text'],
.registrationForm input[type='password'],
.registrationForm select {
    padding: 10px 15px;
    margin: 0;
    border: none;
    width: 100%;
    max-width: 300px;
    background-color: #1c1c1c;
    color: #e0e0e0;
    border-bottom: 1px transparent solid;
    border-left: 5px solid #ecd19a;
    transition: 0.3s;
}

.registrationForm input[type='text']:focus,
.registrationForm input[type='password']:focus {
    border-left: 5px solid #ff7200;
    border-bottom: 1px solid #ff7200;
    background-color: #2c2c2c;
    outline: none;
}

input[type='submit'] {
    padding: 10px 15px;
    border-radius: 3px;
    border: none;
    color: #000;
    background: linear-gradient(#ecd19a, #b79e6b);
    cursor: pointer;
    transition: 0.3s;
}

input[type='submit']:hover {
    background: #b79e6b;
    padding: 10px 35px;
}

.registrationForm select {
    border-left: 5px solid #ecd19a;
    background-color: #1c1c1c;
    color: #e0e0e0;
}

.registrationForm select option {
    padding: 5px;
    background-color: #2b2b2b;
    color: #e0e0e0;
}

.attention a {
    color: #ff7200;
    text-decoration: none;
}

.attention a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
    color: #ccc;
}

copyright a {
    color: #aceb29;
    font-weight: bold;
    font-size: 10px;
    text-decoration: none;
}

copyright a:hover {
    text-decoration: underline;
}
