/*
/*
/* Redex Copyright 2024 - 2025 ©
/*
*/
	:root {
    --bg-color: #0a0a12;
    --card-bg: #161622;
    --text-color: #f0f0f0;
    --primary-color: #6c5ce7;
    --primary-hover: #5649c0;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --error-color: #ff7675;
    --success-color: #00b894;
    --border-color: #2d3436;
    --input-bg: #262636;
	}

	* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	}
	
	body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    background-image: radial-gradient(circle at 25% 25%, rgba(108, 92, 231, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
	}
	
	.register-container {
    max-width: 500px;
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
	}
	
	.register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
	}
	
	@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
	}
	
	.logo {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
	}
	
	.logo span {
		color: var(--primary-color);
	}
	
	h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	}
	
	.form-group {
	  margin-bottom: 25px;
	  position: relative;
	}
	
	label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
	}
	
	#nome, #email, #senha{
    width: 100%;
    padding: 14px 40px 14px 20px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.90rem;
    transition: all 0.3s;
	}
	
	input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
	}
	
	.btn {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    border: none;
    margin-top: 10px;
	}
	
	.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
	}
	
	.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
	}
	
	.mensagem {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
	}
	
	@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
	}
	
	.sucesso {
    background-color: rgba(0, 184, 148, 0.2);
    color: var(--success-color);
    border: 1px solid rgba(0, 184, 148, 0.3);
	}
	
	.erro {
    background-color: rgba(255, 118, 117, 0.2);
    color: var(--error-color);
    border: 1px solid rgba(255, 118, 117, 0.3);
	}
	
	.login-link {
    text-align: center;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.7);
	}
	
	.login-link a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
	}
	
	.login-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
	}
	
	.input-icon {
    position: absolute;
    right: 20px;
    top: 48px;
    color: rgba(255, 255, 255, 0.5);
	}
	
	.password-toggle {
    position: absolute;
    right: 20px;
    top: 48px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s;
	}
	
	.password-toggle:hover {
    color: var(--primary-color);
	}
	
	@media (max-width: 768px) {
    .register-container {
			padding: 30px 20px;
    }
    
    h1 {
			font-size: 22px;
    }
	}
	
	@media (max-width: 480px) {
		.register-container {
			padding: 25px 15px;
		}
		#nome, #email, #senha {
			padding: 12px 15px;
		}
		.btn {
			padding: 12px;
		}
	}