﻿.line-page-container {
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #FEF200 0%, #FFD300 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.line-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.line-app-container {
    width: 100%;
    max-width: 400px;
    margin: 80px auto;
}

.line-logo {
    margin-bottom: 30px;
    text-align: center;
}

.line-logo img {
    max-width: 200px;
    height: auto;
}

.line-login-card, .line-details-card, .otp-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.line-login-card .line-header {
    text-align: center;
}

.line-login-form, .otp-form {
    margin-top: 20px;
}

.line-header {
    text-align: center;
    margin-bottom: 30px;
}

.line-header h1 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.line-header p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.line-login-form .line-form-group {
    margin-bottom: 20px;
}

.line-login-form .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FEF200 0%, #FFD300 100%);
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 0, 0.3);
}

.line-form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Prompt', sans-serif;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

.line-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.line-form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Prompt', sans-serif;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

.line-form-group input:focus {
    outline: none;
    border-color: #FFD300;
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(255, 211, 0, 0.1);
}

.line-form-group input:active {
    border-color: #E6B800;
    background-color: #FFF;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 500;
}

.status-badge.pending {
    background-color: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEAA7;
}

.status-badge.approved {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.status-badge.rejected {
    background-color: indianred;
    color: #ffffff;
    border: 1px solid #C3E6CB;
}

.status-text {
    font-size: 14px;
}

.details-section {
    margin-bottom: 25px;
}

.details-section h2 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #F0F0F0;
}

.info-grid {
    display: grid;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
}

.empty-data {
    color: #999;
    font-style: normal;
}



/* OTP Input Styles */
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.otp-digit {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.otp-digit:focus {
    outline: none;
    border-color: #FFD300;
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(255, 211, 0, 0.1);
}

.otp-digit:active {
    border-color: #E6B800;
    background-color: #FFF;
    transform: scale(0.95);
}

/* OTP Actions */
.otp-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.otp-actions .submit-btn {
    width: 100%;
}

.line-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FEF200 0%, #FFD300 100%);
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 0, 0.3);
}

.linemobile-register-btn {
    background: linear-gradient(135deg, #FEF200 0%, #FFD300 100%);
    color: #333;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(254, 242, 0, 0.3);
    width: 100%;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
}