body {
    background: #fffcf9;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.signup-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.signup-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.signup-header .logo {
    margin-bottom: 1rem;
}

.signup-header h1 {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2C90ED;
    margin: 0;
    font-weight: 600;
}

.signup-header .description {
    color: #161616cc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 100%;
}

.signup-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.signup-card p {
    color: #161616cc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.signup-form label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: #161616cc;
    margin-bottom: 0.5rem;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.signup-form input,
.signup-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid #c4cbcf;
    background: #fffcf9;
    color: #0e1316;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
    color: #8c8c8c;
}

.signup-form input:focus,
.signup-form textarea:focus {
    outline: none;
    border-color: #2C90ED;
}

.signup-form .full-width {
    margin-bottom: 1.25rem;
}

.signup-form .instruction-text {
    color: #161616cc;
    font-size: 0.85rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.signup-form button {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1px;
    border: none;
    background: #2C90ED;
    color: #0e1316;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    font-family: "ibm-plex-mono", monospace;
    transition: background-color .6s cubic-bezier(.86, 0, .07, 1), transform .6s cubic-bezier(.86, 0, .07, 1);
}

.signup-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.signup-form button:hover:not(:disabled) {
    background: #fffcf9;
    transform: scale(1.05);
}

.signup-links {
    text-align: center;
    margin-bottom: 1.5rem;
}

.signup-links a {
    color: #161616cc;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.signup-links a:hover {
    color: #0e1316;
}

.signup-links .login-link {
    color: #161616cc;
    display: none;
}

.signup-links .login-link span {
    color: #161616cc;
}

.separator {
    height: 1px;
    background: #c4cbcf;
    margin: 1.5rem 0;
}

.notice {
    background: #EEF9EE;
    border: 1px solid #8BD18B;
    color: #3D8C3D;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.signup-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #c4cbcf;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #161616cc;
    font-size: 0.85rem;
}

.signup-footer .footer-logo {
    width: 24px;
    height: 24px;
}

.signup-footer .footer-center {
    flex: 1;
    text-align: center;
}

.form-errors {
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.4);
    color: #ff6b4a;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.field-errors {
    color: #ff6b4a;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.field-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signup-form input.error {
    border-color: #ff6b4a;
}

.animation-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark {
    width: 200px;
    height: 200px;
}

.checkmark-circle {
    stroke-dasharray: 565;
    stroke-dashoffset: 565;
    animation: draw-circle 0.8s ease-out forwards;
}

.checkmark-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-check 0.5s ease-out 0.8s forwards;
}

@keyframes draw-circle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 640px) {
    .name-fields {
        grid-template-columns: 1fr;
    }
}
