body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.logo img {
    width: 60px;
    margin-bottom: 20px;
}

.signup-container {
    text-align: center;
    padding: 20px;
}

.signup-box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 40px 20px;
}

.sign-up-headline {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.sign-up-text {
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 2rem;
    color: #000;
}

.back-arrow {
    text-align: left;
    margin-bottom: 15px;
}

.back-arrow img {
    width: 20px;
    height: 20px;
    margin-right: 90px;
}

#back-arrow-img {
    height: 24px;
    width: 24px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.input-group img {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.checkbox-group {
    margin-bottom: 20px;
    text-align: left;
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
}

.checkbox-group label a {
    color: #29ABE2;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: #2A3647;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #33465e;
}

.btn-primary:disabled {
    background-color: #6c6c6c;
}

.footer {
    margin-top: 30px;
    font-size: 0.8rem;
}

.footer a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
}

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

.required-border {
    border: 1px solid #FD8F9C !important;
}

#name-input:focus,
#email-input:focus,
#password-input:focus,
#confirm-password-input:focus {
    border: 1px solid #90D1ED !important;
}

.required-underline {
    text-decoration: underline;
    color: red !important;
}

@media (min-width: 768px) {

    .logo {
        position: absolute;
        top: 48px;
        left: 48px;
    }
}

@media (max-width: 767px) {

    .logo {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .logo img {
        width: 40px;
        margin-bottom: 10px;
    }

    .signup-box {
        max-width: 90vw;
        padding: 40px;
        margin-top: 40px;
    }

    .back-arrow {
        margin-bottom: 0;
    }

    #back-arrow-img {
        margin-right: 48px;
    }

}