.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.register-card {
    padding: 40px;
    border-radius: 70px;
    width: 80%;
    text-align: center;
    position: relative;
    animation: pop-in 0.6s ease-out;
    overflow: hidden;
}

.public-user {
    background: #FF9B85;
}

.reg-student {
    background: #FFD97D;
}

.reg-teacher {
    background: #60D394;
}

@keyframes pop-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.title {
    position: relative;
    font-size: 26px;
    font-weight: bold;
    margin-top: -50px;
    color: #003a00;
    font-family: 'DM Serif Display', serif;
    letter-spacing: 2px;
}

.sub-title {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    margin-top: -50px;
    color: #003a00;
    font-family: 'DM Serif Display', serif;
    letter-spacing: 2px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

form label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

form input {
    width: 70%;
    padding: 2px;
    border: none;
    border-bottom: 2px solid #003621;
    background: transparent;
    font-size: 16px;
    outline: none;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.go-btn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 120px;
    background-color: #AAF683;
    color: #003621;
    border: none;
    padding: 5px;
    font-size: 27px;
    font-family: 'DM Serif Display', serif;
    font-weight: bold;
    cursor: pointer;
    border-radius: 15px;
    text-align: center;
}

.go-btn:hover {
    background-color: #95db71;
    transition: background-color 0.6s ease
}