Event-Planner / client / src / components / register / register.css
register.css
Raw
a:link {
    text-decoration: none;
}

/* visited link */
a:visited {
    text-decoration: none;
}

/* mouse over link */
a:hover {
    text-decoration: none;
}

/* selected link */
a:active {
    text-decoration: none;
}

.register-title {
    margin-top: -16%;
    margin-bottom: 8px;
    font-weight: 400;
    text-align: center;
}

.register-form {
    text-align: center;
    margin-left: 0%;
    margin-right: 0%;
}

.login {
    margin-top:20px;
    text-align: center;
    text-decoration: none;
}

.text-success {
    margin-top: 15px;
    margin-bottom: -15px;
}

.text-danger {
    margin-top: 15px;
    margin-bottom: -15px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
}

.left {
    left: 0;
    background-color: #EAEFEB;
}

.right {
    right: 0;
    background-color: rgb(255, 255, 255);
}