@charset "utf-8";
/* CSS Document */
.signin-register {
            display: flex;
            width: 100%;
	color: #fff;
        }
.signin-register span {
	color: #FF0004;
}
        .left-section, .right-section {
			width: 100%;
		    margin: 2rem;
            flex: 1;
            padding: 4rem;
			background: rgba(225, 225, 225, 0.2);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
        }
        
        .dottedline {
			width: 0.2rem;
            border-right: 0.2rem dashed  rgba(255, 255, 255, 0.3);
        }
        
        .section-title {
            font-size: 2.4rem;
            margin-bottom: 3rem;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 2rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
            font-weight: 500;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 1.2rem 1.5rem;
            background: #556b81;
            border: 0.2rem solid #fcfcfc;
            border-radius: 0.5rem;
            color: #0d1e2b;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }
        
        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="password"]:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .password-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }
        
        .forgot-password {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .forgot-password:hover {
            color: #ffffff;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 2.5rem;
        }
        
        input[type="checkbox"] {
            margin-right: 1rem;
            transform: scale(1.2);
        }
        
        .formbtn {
            width: 100%;
            padding: 1.2rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1.6rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .signin-btn {
            background-color: #3498db;
            color: white;
        }
        
        .signin-btn:hover {
            background-color: #2980b9;
        }
        
        .register-btn {
            background-color: #2ecc71;
            color: white;
        }
        
        .register-btn:hover {
            background-color: #27ae60;
        }
        
        /* 响应式设计 */
        @media (max-width: 76.8rem) {
            .container {
                flex-direction: column;
            }
            
            .left-section {
                border-right: none;
                border-bottom: 0.1rem dashed rgba(255, 255, 255, 0.3);
            }
        }
        
        /* 小屏幕调整 */
        @media (max-width: 48rem) {
            body {
                padding: 1rem;
                font-size: 1.2rem;
            }
            
            .left-section, .right-section {
                padding: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
        }
