*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Times New Roman', Times, serif;
}

.register-container{
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
    linear-gradient(to top, rgba(0,0,0,0.7)50%, rgba(0,0,0,0.7)50%),
    url(forexbackground.jpeg);

    background-position: center;
    background-size: cover;
}

.register-form{
    width: 420px;

    background: rgba(0,0,0,0.85);

    padding: 40px;

    border-radius: 15px;
}

.register-form h1{
    text-align: center;
    color: orange;

    margin-bottom: 30px;
}

.register-form form{
    display: flex;
    flex-direction: column;
}

.register-form input{
    margin-bottom: 18px;

    padding: 14px;

    background: transparent;

    border: none;
    border-bottom: 1px solid orange;

    color: white;
    font-size: 15px;
}

.register-form input:focus{
    outline: none;
}

::placeholder{
    color: #ddd;
}

.register-form button{
    margin-top: 15px;

    padding: 14px;

    border: none;
    border-radius: 8px;

    background: orange;

    color: black;
    font-size: 17px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.register-form button:hover{
    background: white;
    color: orange;
}

.back-link{
    display: block;

    text-align: center;

    margin-top: 25px;

    color: white;
    text-decoration: none;
}