body {
    background-color: #065b4c;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.register-box {
    width: 450px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.register-logo a {
    color: #065b4c;
    font-weight: bold;
    font-size: 24px;
}

.form-control {
    border-radius: 5px;
}

.btn-primary {
    background-color: #065b4c;
    border-color: #065b4c;
}

.btn-primary:hover {
    background-color: #065b4c;
    border-color: #065b4c;
}

.text-center a {
    color: #065b4c;
}

.text-center a:hover {
    text-decoration: underline;
}