.register-page {
    background: rgb(47, 49, 54);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(47, 49, 54, 1);
    padding: 12.5px 5%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
    background: linear-gradient(45deg, #5865F2 0%, #EB459E 100%);
    -webkit-background-clip: text;
    background-clip: padding;
    -webkit-text-fill-color: transparent;
}

.logo:hover {
    opacity: 0.9;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #5865F2 0%, #EB459E 100%);
    -webkit-background-clip: text;
    background-clip: padding;
    -webkit-text-fill-color: transparent;
}

.logo-container:hover .logo-image {
    transform: scale(1.1);
    opacity: 0.9;
}

.logo-container:hover .logo-text {
    opacity: 0.9;
}

.auth-container {
    background: rgb(47, 49, 54);
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.auth-title {
    color: rgba(190, 190, 190, 1);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(190, 190, 190, 1);
    font-family: "Noto Sans JP", sans-serif;
}

.auth-input {
    background: rgba(30, 30, 30, 1);
    border: 1px solid rgba(30, 30, 30, 1);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    color: rgba(190, 190, 190, 1)
}

.auth-input:focus {
    outline: none;
    border-color: #525EE0;
    box-shadow: 0 0 0 2px rgba(82, 94, 224, 0.2);
}

.auth-button {
    background: #525EE0;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background: #4754c5;
}

.auth-link {
    color: rgba(190, 190, 190, 1);
    text-align: left;
    margin-top: -1rem;
    font-size: 0.9rem;
    font-family: "Noto Sans JP", sans-serif;
}
.forgot-password {
    color: rgba(190, 190, 190, 1);
    text-align: left;
    margin-top: -1rem;
    font-size: 0.9rem;
    font-family: "Noto Sans JP", sans-serif;
    
}
.auth-link a {
    color: #1e85bf;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.auth-link a:hover {
    text-decoration:underline
}