.code-selection-box {
    width: 50%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 24rem;
    padding: 1rem;
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #2563eb;
    margin: 0;
}

.card-content {
    padding: 1.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.button-primary {
    background-color: #2563eb;
    color: white;
}

.button-primary:hover {
    background-color: #1d4ed8;
}

.button-google {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
    margin-top: 1rem;
}

.button-google:hover {
    background-color: #f3f4f6;
}

.button-facebook {
    background-color: #1877f2;
    color: white;
    margin-top: 0.5rem;
}

.button-facebook:hover {
    background-color: #166fe5;
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-gray-600 {
    color: #4b5563;
}

.link {
    color: #2563eb;
    text-decoration: none;
    margin-left: 0.25rem;
}

.link:hover {
    text-decoration: underline;
}
