body {

    font-family: 'Inter', sans-serif;
    background-color: #F4F1EA;

    display: flex;
    justify-content: center;

    padding-top: 80px;
}

.profile-container {

    width: 90%;
    max-width: 600px;
}

.header {

    text-align: center;
    margin-bottom: 40px;
}

.header h1 {

    color: #232826;
    margin-bottom: 15px;
}

.header p {

    color: #5F665F;
    line-height: 1.6;
}

.form-group {

    margin-bottom: 25px;
}

label {

    display: block;

    margin-bottom: 8px;

    color: #232826;

    font-weight: 600;
}

input {

    width: 100%;

    padding: 14px;

    border: 2px solid #D8D3CA;
    border-radius: 12px;

    background-color: #FAF8F3;

    font-size: 15px;

    transition: border-color 0.2s ease;
}

input:focus {

    outline: none;

    border-color: #556B5D;
}

small {

    display: block;

    margin-top: 8px;

    color: #777;
}

/* Button */

#continueBtn {

    width: 100%;

    margin-top: 20px;

    padding: 14px;

    background-color: #556B5D;

    color: white;

    border: none;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: background-color 0.2s ease;
}

#continueBtn:hover {

    background-color: #44574B;
}