* {
	 margin: 0;
	 padding: 0;
	 box-sizing: border-box;
	 font-family: "Segoe UI", sans-serif;
	}

	body {
	 min-height: 100vh;
	 background: linear-gradient(135deg, #081a3a, #0d2c5c);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 color: #fff;
	}

	.signup-container {
	 background: #0f2f5e;
	 width: 100%;
	 max-width: 420px;
	 padding: 40px;
	 border-radius: 16px;
	 box-shadow: 0 20px 40px rgba(0,0,0,0.35);
	}

	.logo {
	 text-align: center;
	 font-size: 28px;
	 font-weight: 700;
	 color: #ffcc33;
	 margin-bottom: 10px;
	}

	.subtitle {
	 text-align: center;
	 font-size: 14px;
	 color: #cbd5e1;
	 margin-bottom: 30px;
	}

	.form-group {
	 margin-bottom: 18px;
	}

	.form-group label {
	 display: block;
	 font-size: 13px;
	 margin-bottom: 6px;
	 color: #e5e7eb;
	}

	.form-group input {
	 width: 100%;
	 padding: 12px 14px;
	 border-radius: 10px;
	 border: none;
	 outline: none;
	 font-size: 14px;
	 background: #f8fafc;
	 color: #111827;
	}

	.form-group input::placeholder {
	 color: #9ca3af;
	}

	.signup-btn {
	 width: 100%;
	 padding: 14px;
	 background: #ffcc33;
	 color: #111827;
	 border: none;
	 border-radius: 12px;
	 font-size: 16px;
	 font-weight: 600;
	 cursor: pointer;
	 margin-top: 10px;
	 transition: 0.3s ease;
	}

	.signup-btn:hover {
	 background: #fbbf24;
	 transform: translateY(-1px);
	}

	.divider {
	 text-align: center;
	 margin: 20px 0;
	 font-size: 13px;
	 color: #cbd5e1;
	}

	.signin-link {
	 text-align: center;
	 font-size: 14px;
	 color: #cbd5e1;
	}

	.signin-link a {
	 color: #ffcc33;
	 text-decoration: none;
	 font-weight: 500;
	}

	.signin-link a:hover {
	 text-decoration: underline;
	}

	@media (max-width: 480px) {
	 .signup-container {
	   margin: 20px;
	   padding: 30px 24px;
	 }
	}